Help for this page

Select Code to Download


  1. or download this
    use strict;
    package foo;
    ...
    __END__
    foo: quux => *foo::quux
    Howdy, world!
    
  2. or download this
    # file include.pl
    use strict;
    ...
    sub japh {
        print $me,"\n";
    }
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    our $me = "Just another perl hacker";
    require "include.pl";
    japh();
    
  4. or download this
    Just another perl hacker