On Tuesday, September 9, 2003, at 10:59 AM, Rodney Wise wrote:

It looks like by declaring my subroutines, they are being executed. ???


example of my Subroutine declarations:



# Get the Data Number
&get_number;

# Get Form Information
&parse_form;

Just to be sure we're on the same playing field - you realize that this is not a declaration, but is actually a call to execute those subroutines, right? In perl you do not pre-declare subs. Whether they are declared before or after you call them is not important - either is valid, but they are only declared once.


George

George


-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to