in reply to RE: I use return on a subroutine
in thread I use return on a subroutine
or is that what you where saying all along?my $txt2print = MySub('This text') or warn('MySub said 0'); print $txt2print; sub MySub { my $txt = shift; $txt = { do something here } or return(0); return($txt); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: RE: I use return on a subroutine
by elwarren (Priest) on May 28, 2000 at 19:18 UTC |