Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

RE: RE: My views on pseudohashes

by panache (Initiate)
on Jun 30, 2000 at 00:46 UTC ( [id://20490]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    
    package hashobject;
    ...
      return(bless($self, $class));
    }
    
  2. or download this
    
    my $obj = new hashobject;
    ...
    $obj->{variablee} = 'bar';  # TYPO...
    print $obj->{variable};  # Prints 'foo'
    
  3. or download this
    
    package pseudohashobject;
    ...
      return($self);
    }
    
  4. or download this
    my $obj = new pseudohashobject;
    $obj->{variablee} = 'bar';  # TYPO
    print $obj->{variable};
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-03-29 05:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found