Re: subroutine placement (Layout conventions)

2004-02-27 Thread R. Joseph Newton
B McKee wrote: > Hi All, > > I'm slowly creating my Perl Masterpiece (tm) > I'll let ya all giggle over it when I'm done :-) > At any rate - It's done what I believe you call "top-down". > I declare the subs, Not generally necessary, and oftentimes problematic, in Perl > then have the co

Re: subroutine placement (Layout conventions)

2004-02-27 Thread Wiggins d Anconia
> From: "Wiggins d Anconia" <[EMAIL PROTECTED]> > > I like most of this answer. I would add that you should drop the > > declarations of the subs, they are unneeded in Perl and can break some > > "features". This will help to some extent depending on your calling > > order. > > ??? > > 1. The

Re: subroutine placement (Layout conventions)

2004-02-26 Thread James Edward Gray II
On Feb 26, 2004, at 11:47 AM, B McKee wrote: Hi All, I'm slowly creating my Perl Masterpiece (tm) I'll let ya all giggle over it when I'm done :-) At any rate - It's done what I believe you call "top-down". I declare the subs, then have the code for the main program, then the subroutine code blo

Re: subroutine placement (Layout conventions)

2004-02-26 Thread Wiggins d Anconia
> On Feb 26, 2004, at 11:47 AM, B McKee wrote: > > > Hi All, > > > > I'm slowly creating my Perl Masterpiece (tm) > > I'll let ya all giggle over it when I'm done :-) > > At any rate - It's done what I believe you call "top-down". > > I declare the subs, then have the code for the main program

Re: subroutine placement (Layout conventions)

2004-02-26 Thread Rob Dixon
Hi Brian Brian McKee wrote: > > I'm slowly creating my Perl Masterpiece (tm) > I'll let ya all giggle over it when I'm done :-) You shouldn't get any laughter from here. All of us have written a less-than-acceptable Perl script. > At any rate - It's done what I believe you call "top-down". >Fro

Re: subroutine placement (Layout conventions)

2004-02-26 Thread Jenda Krynicky
From: "Wiggins d Anconia" <[EMAIL PROTECTED]> > I like most of this answer. I would add that you should drop the > declarations of the subs, they are unneeded in Perl and can break some > "features". This will help to some extent depending on your calling > order. ??? 1. The declarations are a