Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

autodie

  • autodie
#!/usr/bin/perl
use strict;
use warnings;

use autodie;

open my $fh, '<', 'data.txt';

print "ok\n";

Can't open 'data.txt' for reading: 'No such file or directory' at examples/advanced-perl/autodie.pl line 7