Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: a question on style

by cleen (Pilgrim)
on Jun 13, 2000 at 04:00 UTC ( [id://17815]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    if ($x = $y) {
       print "$y = $x\n";
    }
    
  2. or download this
    print "$y = $x\n" if ($x = $y);
    
  3. or download this
    if ($y eq $x) {
     print "$y = $x\n";
    ...
    elsif ($debug eq 1) {
     print "$y != $x\n";
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-23 11:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found