Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

shemp's scratchpad

by shemp (Deacon)
on Jun 02, 2004 at 15:01 UTC ( [id://359473]=scratchpad: print w/replies, xml ) Need Help??

{ my $foo = SomeClass->new(); some_func(\$foo); } sub some_func { my ($object_ref_ref) = @_; $$object_ref_ref->in_element(); ... } ### OR ### { my $foo = SomeClass->new(); some_func($foo); } sub some_func { my ($object_ref) = @_; $object_ref->in_element() ... }
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (7)
As of 2024-04-16 18:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found