Help for this page
### my-perl-script.pl use strict; ... sub foo { print "Foo, from the main package.\n"; }
### 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"; }