- or download this
use Some::Module qw(the-mascot);
the-mascot();
- or download this
use Some::Module;
my $a = new Some::Module;
$a->animal("parrot");
$a->mascot;
- or download this
$data = "camel";
...
sub mascot {
the-mascot();
}
- or download this
sub the-mascot {
my $self = shift;
...
END
}