Help for this page

Select Code to Download


  1. or download this
    ### my-perl-script.pl
    use strict;
    ...
    sub foo {
        print "Foo, from the main package.\n";
    }
    
  2. or download this
    ### Bar.pm
    package Bar;
    ...
        print "Also foo, but this comes from the Bar package.\n";
        print "(And no, if my wife calls, I'm not at the bar!)\n";
    }