Help for this page

Select Code to Download


  1. or download this
    
    use warnings;
    ...
        Carp::carp "This should not work!";
    }
    
  2. 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.
    
  3. 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