- or download this
package Foo;
sub new { ... };
sub xyzzy { ... };
1;
- or download this
require Foo;
my $foo = new Foo ( );
print $foo->xyzzy ( );
- or download this
# The new Foo.
package Foo;
...
@ISA = qw ( System::Foo );
...
1;
- or download this
package System::Foo;
...