- or download this
use warnings;
...
Carp::carp "This should not work!";
}
- or download this
[steve@kirk ~]$ perl -Mstrict -Mwarnings \
...
syntax error at -e line 2, near "Carp::carp "This should not work!""
Execution of -e aborted due to compilation errors.
- or download this
[steve@kirk ~]$ /tmp/bleadperl/bin/perl5.9.5 -Mstrict \
...
This will work! at -e line 1
main::complain() called at -e line 2