in reply to Re: looping through array
in thread looping through array
@array = qw(one two three); print @array, "\n"; print "@array\n"; print '@array\n'; __END__ onetwothree #array elements are fused. one two three #spaced and the "\n" replaced with a new line. @array\n #prints @array and "\n" as literals.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: looping through array
by AnomalousMonk (Archbishop) on Jan 08, 2010 at 02:50 UTC | |
|
Re^3: looping through array
by manishrathi (Beadle) on Jan 08, 2010 at 00:16 UTC | |
by AnomalousMonk (Archbishop) on Jan 08, 2010 at 03:07 UTC |