Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Global symbol requires explicit package name

by greengaroo (Hermit)
on Nov 28, 2012 at 15:34 UTC ( [id://1006051]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        my $fh=$_[0];
        my $h=$_[1];
        shift @_;
        shift @_;
        foreach my $key (@_)
    
  2. or download this
        my ( $fh, $h, @keys ) = @_;
        
        foreach my $key ( @keys ) {
    
  3. or download this
        my $fh = shift;
        my $h = shift;
        
        foreach my $key ( @_ ) {
    

Log In?
Username:
Password:

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

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

    No recent polls found