- or download this
sub a {
print "letter a";
...
print "whispers softly";
}
1;
- or download this
require Foo;
...
print "\n";
- or download this
$ perl require.pl
whispers softly Letter B
- or download this
package Foo;
sub a{
...
}
1;
- or download this
$ perl require.pl
Undefined subroutine &main::mother_mary called at require.pl line 3.