Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: accessing stashes

by choroba (Cardinal)
on Mar 01, 2019 at 17:11 UTC ( [id://1230722]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1230722]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (6)
As of 2024-04-19 07:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found