RE: passing local value between sub functions

2002-05-02 Thread Timothy Johnson
om: Bob Showalter To: 'Johnson, Shaunn'; '[EMAIL PROTECTED]' Sent: 5/2/02 8:06 AM Subject: RE: passing local value between sub functions > -Original Message- > From: Johnson, Shaunn [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 02, 2002 10:37 AM > To: '[EMA

RE: passing local value between sub functions

2002-05-02 Thread Bob Showalter
> -Original Message- > From: Johnson, Shaunn [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 02, 2002 10:37 AM > To: '[EMAIL PROTECTED]' > Subject: passing local value between sub functions > > > Howdy: > > Have a question about trying to pass t

RE: passing local value between sub functions

2002-05-02 Thread Jackson, Harry
>-Original Message- >From: Johnson, Shaunn [mailto:[EMAIL PROTECTED]] > > >Howdy: > >Have a question about trying to pass the result >of a sub function to another sub function. > >Let's say I have some code like this: > >[snip] > >sub firstPart { > while (<>) { > print "Stuff

passing local value between sub functions

2002-05-02 Thread Johnson, Shaunn
Howdy: Have a question about trying to pass the result of a sub function to another sub function. Let's say I have some code like this: [snip] sub firstPart { while (<>) { print "Stuff here is: $_\n"; } [/snip] I'd like to know how can I make $_ available for OTHER su