Re: function prototyping

2002-01-29 Thread Curtis Poe
--- John <[EMAIL PROTECTED]> wrote: > Does anyone have a cheetsheat for function prototyping - how to say > that a parameter is a scalar, array, hash, reference, etc., and whether > it is required or optional? John, Here's the cheatsheet for function prototypes: Don&#

Re: function prototyping

2002-01-29 Thread Chas Owens
On Tue, 2002-01-29 at 15:38, John wrote: > Does anyone have a cheetsheat for function prototyping - how to say > that a parameter is a scalar, array, hash, reference, etc., and whether > it is required or optional? > > > > > > > > -- > To unsubscr

function prototyping

2002-01-29 Thread John
Does anyone have a cheetsheat for function prototyping - how to say that a parameter is a scalar, array, hash, reference, etc., and whether it is required or optional? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re:[OT]function prototyping (was: copying an array)

2001-05-23 Thread Paul
--- Aaron Craig <[EMAIL PROTECTED]> wrote: > At 15:12 22.05.2001 -0700, you wrote: > > > > The problem is: PROTOTYPES MUST BE SEEN BEFORE THE FUNCTION IS > > > > CALLED. So few people realize that (for one reason or > > > > another[1]). > > > For that reason, I usually do my function definitions

Re:[OT]function prototyping (was: copying an array)

2001-05-23 Thread Aaron Craig
At 15:12 22.05.2001 -0700, you wrote: > > > The problem is: PROTOTYPES MUST BE SEEN BEFORE THE FUNCTION IS > > > CALLED. So few people realize that (for one reason or another[1]). > >For that reason, I usually do my function definitions at the top of my >programs. That way they've already been t

Re:[OT]function prototyping (was: copying an array)

2001-05-22 Thread Paul
> - Original Message - > From: "Jeff Pinyan" <[EMAIL PROTECTED]> > To: "Aaron Craig" <[EMAIL PROTECTED]> > > Before I answer your question, I have to ask you to not use > > subroutine prototypes. 9 out of 10 Perl programmers use them > > incorrectly or don't know what they do. > > > > The