3 lines
114 B
Perl
3 lines
114 B
Perl
|
|
open my $fh, '<', 'file'
|
||
|
|
or die "Cannot open file: $!\n"; # $! contains the error message from the last error
|