Re: Code Format Question

2002-01-25 Thread Jenda Krynicky
From: "Darryl Schnell" <[EMAIL PROTECTED]> > This may not be the place to ask this question so forgive me. I know a > few people who are obsessed with the way their perl code is formatted > and I was wondering what does actual good readable perl code and bad > formatted perl co

Re: Code Format Question

2002-01-25 Thread Jonathan E. Paton
Hi, I prefer using the other form of if/unless etc when possible. And I run under 'use strict;', hence I properly localise my variables. I.e. if ($action eq "Submit") { my ($value, $value) = (1, 2); $testus = 6 if ($testus eq "2"); } > but I think what you wrote can be considered foll

Re: Code Format Question

2002-01-25 Thread Jon Molin
Darryl Schnell wrote: > > This may not be the place to ask this question so forgive me. I know a few people >who are obsessed with the way their perl code is formatted and I was wondering what >does actual good readable perl code and bad formatted perl code look like? > > I usually have my co