Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^3: When -w and use strict aren't enough...

by ikegami (Patriarch)
on Jun 15, 2006 at 22:24 UTC ( [id://555650]=note: print w/replies, xml ) Need Help??


in reply to Re^2: When -w and use strict aren't enough...
in thread When -w and use strict aren't enough...

Don't know, but one downside (upside?) is that your functions are no longer accessible from outside the package. That can easily be fixed by doing one of the following for exportable functions:
*handleNewYear = my $handleNewYear = sub { # do something really useful };
sub handleNewYear { # do something really useful } my $handleNewYear = \&handleNewYear;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-26 00:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found