samizdat has asked for the wisdom of the Perl Monks concerning the following question:
After the above setup,my @temp = (2,3,4); $selects[0] = [@temp];
works, but...$refdates = $selects[0]; @workdts = @$refdates;
...does not.@workdts = @$selects[0];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Directly Dereferencing an Array Reference to an Array
by cdarke (Prior) on Aug 30, 2006 at 17:49 UTC | |
|
Re: Directly Dereferencing an Array Reference to an Array
by Velaki (Chaplain) on Aug 30, 2006 at 17:52 UTC | |
by samizdat (Vicar) on Aug 30, 2006 at 17:59 UTC |