- or download this
####### foo.pl ######################
use Foo;
...
sub name { return $_[0]->{name}; }
1;
- or download this
####### bar.pl ######################
use Bar;
...
sub age { return $_[0]->{age}; }
1;
- or download this
foo.pl
Foo.pm
bar.pl
Bar.pm
- or download this
####### foobar.pl ######################
use Foobar;
...
name => 'Tom'
age => 23
);
- or download this
foobar.pl
Foobar.pm
Foobar/Foo.pm
Foobar/Bar.pm
- or download this
####### Foobar.pm ##################
package Foobar;
...
}
1;