in reply to Re^4: Array of variables
in thread Array of variables
perl -E ' my ( $x, $y, $z ) = ( 1, 2, 3 ); my @a = ( $x, $y, $z ); say join " ", map { $_++, $_ } @a; say "@a"; say "$x $y $z"; ' 1 2 2 3 3 4 2 3 4 1 2 3
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Array of variables
by dbuckhal (Chaplain) on May 28, 2013 at 21:39 UTC |