Skip to content

Commit

Permalink
Updated skeleton program for Modern::Perl update.
Browse files Browse the repository at this point in the history
  • Loading branch information
chromatic committed Jan 5, 2012
1 parent 3078fb7 commit 04e6431
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sections/chapter_00.pod
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ skeleton of a program:

#!/usr/bin/env perl

use Modern::Perl;
use Modern::Perl 2011;
use autodie;

=end programlisting

Expand All @@ -39,7 +40,7 @@ skeleton of a program:

#!/usr/bin/env perl

use 5.012;
use 5.012; # implies "use strict;"
use warnings;
use autodie;

Expand Down

0 comments on commit 04e6431

Please sign in to comment.