Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
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 studying the Monastery: (4)
As of 2024-03-29 00:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found