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