in reply to accessing array elements using a reference
$hash{"one"} -> [[1,2,3],[]] @{$hash{"one"}} -> ([1,2,3],[]) ${$hash{"one"}}[0] -> [1,2,3] @{${$hash{"one"}}[0]} -> (1,2,3)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: accessing array elements using a reference
by Anonymous Monk on May 19, 2008 at 21:42 UTC | |
by grizzley (Chaplain) on May 20, 2008 at 06:37 UTC |