--- 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
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]
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
, 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
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