Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    use MyModule;
    
    print "\nbar\n";
    
  2. or download this
    package MyModule;
    
    print "foo";
    
    1;
    
  3. or download this
    PERL5LIB=lib pp -o t.par -p -v t.pl -M MyModule