Help for this page

Select Code to Download


  1. or download this
    package foo;
    use strict;
    ...
        print "module foo, sub bar executed here\n";
    }
    1;
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    BEGIN {
       print "begin block 2 \n";
    }