perlstyle

2005-08-02 Thread Tom Allison
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

Re: perlstyle

2005-08-02 Thread Jeff 'japhy' Pinyan
On Aug 2, Tom Allison said: What do they mean by Uncuddled elses. in perldoc perlstyle? A cuddled else is this kind: if (...) { ... } else { ... } whereas an uncuddled else is: if (...) { ... } else { ... } -- Jeff japhy Pinyan % How can we ever

RE: perlstyle

2005-08-02 Thread ebgarrett
{ | } | 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