- or download this
export DEBUGGING=1
perl -Mbegin yourscript.pl
- or download this
perl -Mbegin=VERBOSE yourscript.pl
- or download this
perl -Mbegin=all yourscript.pl
- or download this
======= yourscript.pl ===================
...
# code that's always compiled and executed
========================================
- or download this
my $foo = 2;
...
=cut
warn "normal foo = $foo\n";
- or download this
my $foo = 2;
...
}
warn "normal foo = $foo\n";