RE: Question on PERL coding style...

2002-01-29 Thread Curtis Poe
--- John <[EMAIL PROTECTED]> wrote: > If you put them in a module are they parsed before they are called? > Does it matter whether you use "use" or "require"? When is it better > to specify subroutines when you use "use"? See perldoc -f use and perldoc -f require. "use" happens at compile tim

RE: Question on PERL coding style...

2002-01-29 Thread John
If you put them in a module are they parsed before they are called? Does it matter whether you use "use" or "require"? When is it better to specify subroutines when you use "use"? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Question on PERL coding style...

2002-01-29 Thread McDonald Patrick
PROTECTED] Subject: Question on PERL coding style... This might be a really strange question, but I need to ask - Does PERL execute from beginning through the program in a linear fashion, "jumping around" subroutines unless they're called? I have a program that's structured as

RE: Question on PERL coding style...

2002-01-29 Thread Hanson, Robert
, 2002 1:38 PM To: [EMAIL PROTECTED] Subject: Question on PERL coding style... This might be a really strange question, but I need to ask - Does PERL execute from beginning through the program in a linear fashion, "jumping around" subroutines unless they're called? I have a

Question on PERL coding style...

2002-01-29 Thread Richard.C.1
This might be a really strange question, but I need to ask - Does PERL execute from beginning through the program in a linear fashion, "jumping around" subroutines unless they're called? I have a program that's structured as shown below (assume vars and statements are different) and need to know