- or download this
#!/usr/bin/perl
use warnings;
...
say defined &My::one; # 1
say defined &My::two; #
say defined &My::three; #
- or download this
sub four (&@);
# ...
say ${My::}{four}; # &@
- or download this
sub five (&@) :method;
say ${My::}{five}; # *My::five