Help for this page

Select Code to Download


  1. or download this
    package Foo;
    
    # some code here
    ...
    
    return 1 if caller();
    print "as a program\n";
    
  2. or download this
    $ perl Foo.pm
    Called as a program!
    
  3. or download this
    $ perl -MFoo -e 1
    $
    
  4. or download this
    $ perl Bar.pm
    Can't open perl script "Bar.pm": No such file or directory