Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^3: scope of "use strict"? (needed: "superstrict")

by etcshadow (Priest)
on Jul 07, 2005 at 18:52 UTC ( [id://473191]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub blarg {
        $i = $i+1;
        return $i;
    }
    
  2. or download this
    use strict;
    sub blarg {
        $i = $i+1;
        return $i;
    }
    
  3. or download this
    use strict;
    sub blarg {
        my $i = $i+1;
        return $i;
    }
    
  4. or download this
    ------------
    :Wq
    Not an editor command: Wq
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://473191]
help
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-04-19 01:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found