Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: FOREACH Variables

by snoopy (Curate)
on Aug 11, 2009 at 04:43 UTC ( [id://787481]=note: print w/replies, xml ) Need Help??


in reply to FOREACH Variables

Another catch:
use Net::SNMP '5.0' || die("Cannot Load SNMP Module\n");
is interpreted as:
use Net::SNMP ('5.0' || die("Cannot Load SNMP Module\n"));
Just stick to:
use Net::SNMP '5.0';
Perl will die anyway, if it can't find and load the module.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (6)
As of 2024-04-18 17:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found