Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: my My $my;

by Thilosophy (Curate)
on Oct 22, 2007 at 09:45 UTC ( [id://646406]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my My $my
    
  2. or download this
    # compile error
    $my->{no_such_field} ++;
    
  3. or download this
    use strict;
    {
    ...
    }
    my  My $my = new My;
    $my->{one}++;
    
  4. or download this
    package My;
    sub BEGIN {
        use strict 'refs';
    ...
    {;};
    my $my = 'My'->new;
    ++$$my[1];  ##  <--- array access
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-03-29 00:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found