Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^3: Pearls (not really) of Perl programming

by bart (Canon)
on Nov 25, 2004 at 11:57 UTC ( [id://410372]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #! perl
    $x = 3;
    ...
      || $x == 3) {
        print "Yeah!\n";
    }
    
  2. or download this
    test.pl syntax OK
    $x = 3;
    if ($x == 2 or $x == 3) {
        print "Yeah!\n";
    }
    
  3. or download this
    $x = 3;
    if(
    ...
      $x == 3) {
        print "Yeah!\n";
    }
    

Log In?
Username:
Password:

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

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

    No recent polls found