Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

EXP32-EX2: The autodie module is designed to replace functions that return a value indicating failure with functions that throw an exception on failure. When autodie is in use, any functions it redefined redefines may be safely ignored.

Code Block
bgColor#ccccff
langperl
use autodie;

my $source;
open(SOURCE, "<", $source);
@lines = (<SOURCE>);
close(SOURCE);

...