Fatal
Fatal
NAME
Fatal - Replace functions with equivalents which succeed or die
SYNOPSIS
use Fatal qw(open close); open(my $fh, "<", $filename); # No need to check errors! use File::Copy qw(move); use Fatal qw(move); move($file1, $file2); # No need to check errors! sub juggle { . . . } Fatal->import('juggle');
BEST PRACTICE
Fatal has been obsoleted by the new autodie pragma. Please use 登录查看完整内容