in reply to perlapp, die, and __DATA__
my @DATA; my @data = q( testing 1 testing 2 testing 3 ); for (@data) { push @DATA, split /\n/; } $DATA[$_].="\n" for 0..$#DATA; for(@DATA){ chomp; print; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: perlapp, die, and __DATA__
by integral (Hermit) on Apr 25, 2003 at 10:47 UTC |