Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Use strict and warnings

by runrig (Abbot)
on Sep 08, 2001 at 04:09 UTC ( [id://111088]=perltutorial: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use strict;
    
  2. or download this
    Global symbol "$xxx" requires explicit package name at ./tst line 5.
    
  3. or download this
    # Change this:
    $string = "hello world";
    ...
    while ($sth->fetch) {
     print "F1: $field1 F2: $field2\n";
    }
    
  4. or download this
    use warnings;
    
  5. or download this
    #!/usr/local/bin/perl -w
    
    ...
    $^W = 1;
    # Or
    BEGIN { $^W = 1 }
    
  6. or download this
    
    # Change this:
    ...
     local $^W;
     $_[0] + $_[1];
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (2)
As of 2024-04-19 00:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found