in reply to referencing list
use Data::Alias; my @x = (1, 2, undef) ; alias my ($a, $b, $c) = @x ; $c = $a + $b ; print "@x\n" ;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: referencing list
by pmilne (Novice) on Jun 06, 2012 at 03:17 UTC | |
by tobyink (Canon) on Jun 06, 2012 at 06:29 UTC |