- or download this
package My;
...
my $mya = My::A->new({name => 'Dave'});
$mya->greet();
- or download this
my %subs = (
new => sub { # constructor goes here... },
...
no strict 'refs';
*{$pkg_sub . '::' . $name} = $code;
}
- or download this
{
# ...
...
*{"$class"."::"."$name"} = $code;
}
}