in reply to RE: Writing the contents of an array to a file
in thread Writing the contents of an array to a file
I prefer something like print STDOUT "@list";, which is semantically equivalent to print STDOUT (join($", @array));[firewheel ~]$ perl my @list = (1 .. 4); print STDOUT @list;
Fastolfe is correct, though. This is a scoping issue.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: RE: Writing the contents of an array to a file
by Fastolfe (Vicar) on Sep 28, 2000 at 23:49 UTC | |
by tye (Sage) on Sep 29, 2000 at 00:06 UTC |