in reply to Re: Re: can't write a variable to a file
in thread can't write a variable to a file
prints "a", then "b", then "zed". After the print "a", perl jumps right over the sub definition to the next plain statement.print "a"; sub doit { print "zed" } print "b"; &doit();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: can't write a variable to a file
by sabotodd (Initiate) on May 11, 2004 at 10:38 UTC | |
by ysth (Canon) on May 11, 2004 at 10:44 UTC |