RE: Best place to put collection of subroutines in a program

2004-11-09 Thread Bob Showalter
Edward WIJAYA wrote: > Hi, > > Would like to know, where is the best place to > put collection of subroutines in a Perl program, > is it after "main" or before? Any caveat? I generally put the "main" code at the top and subs below. Perl doesn't care unless you want to call a sub without parens, i

Re: Best place to put collection of subroutines in a program

2004-11-09 Thread Chris Devers
On Tue, 9 Nov 2004, Edward WIJAYA wrote: > Would like to know, where is the best place to > put collection of subroutines in a Perl program, > is it after "main" or before? Any caveat? It's more a matter of style than anything else. I like having the main block up front, and the subroutines aft

Best place to put collection of subroutines in a program

2004-11-09 Thread Edward WIJAYA
Hi, Would like to know, where is the best place to put collection of subroutines in a Perl program, is it after "main" or before? Any caveat? -- Regards, Edward WIJAYA SINGAPORE -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]