Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Re (tilly) 3: Filehandles vs. Packages: And the winner is...

by demerphq (Chancellor)
on Aug 30, 2001 at 05:13 UTC ( [id://108973]=note: print w/replies, xml ) Need Help??


in reply to Re (tilly) 3: Filehandles vs. Packages: And the winner is...
in thread Filehandles vs. Packages: And the winner is...

Yeah exactly. This can be seen below....
package Snafu; use Carp 'cluck'; sub new { warn join ',',@_; } 1; Snafu::new("Test"); Snafu->new("Test");
although the following is also interesting
package Snafu; use Carp 'cluck'; sub new { cluck join ',',@_; } sub _new { goto &new } 1; Snafu::new("Test"); Snafu->new("Test"); Snafu->_new("test");

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-04-24 07:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found