Uncuddled elses.  Found @ http://learn.clemsonlinux.org/wiki/Perl
 
  |   /* cuddled "else" */    |   /* uncuddled "else" */
  |   if (x > 0) {            |   if (x > 0) {
  |      x += y;              |      x += y;
  |   } else {                |   }
  |      y += x;              |   else {
  |   }                       |      y +=x;
                              |   }

Bonita Garrett

-----Original Message-----
From: Tom Allison [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 02, 2005 4:42 PM
To: beginners perl
Subject: perlstyle

What do they mean by

"Uncuddled elses." in perldoc perlstyle?

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to