Help for this page

Select Code to Download


  1. or download this
    ~/MyPerl
        |
    ...
              |
              |_ mypackage.pm
    
  2. or download this
    use strict;
    use warnings;
    use lib "home/neversaint/MyPerl/src/mypackage.pm";
    
    # the rest of my code
    
  3. or download this
    ~/MyPerl $ perl -c src/mycode.pl
    mycode.pl syntax ok
    
  4. or download this
    ~/MyPerl $ perl src/mycode.pl some_arg
    
    Undefined subroutine &main::some_subrutine called at src/mycode.pl lin
    +e 10.