Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: my and local??

by monk (Scribe)
on Jul 28, 2000 at 16:32 UTC ( [id://24836]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    #didn't use strict, to make the example clearer.
    ...
    }
    
    print "$foo\n";    # prints 3.
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;    #<- very important.
    ...
    }
    print "$bar\n"; # <- compiler gives error.$bar does not exsist (kind o
    +f).
    print "$foo\n";    # you get 3.
    
  3. or download this
    s/compiler/interpreter/ig;
    

Log In?
Username:
Password:

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

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

    No recent polls found