- or download this
sub new {
return bless {}, shift;
...
my ($x, $y) = @_;
return $x + $y;
}
- or download this
my $res = Module->add(1, 2);
...
my $mod = 'Module';
my $res = $mod->add(1, 2);
- or download this
my $mod = 'My::Long::Module::Name';
...
}
# etc