in reply to Re^2: NEXT statement in for loop
in thread NEXT statement in for loop
Why not? (And why don’t you try it?)
use strict; use warnings; use Data::Dump; my %pic = ( R0 => [ 5, 4 ], R2 => [ 3, 2 ] ); dd \%pic;
Output:
16:03 >perl 1651_SoPW.pl { R0 => [5, 4], R2 => [3, 2] } 16:03 >
See perlreftut and especially perldsc#HASHES-OF-ARRAYS.
Hope that helps,
| Athanasius <°(((>< contra mundum | Iustus alius egestas vitae, eros Piratica, |
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: NEXT statement in for loop
by Anonymous Monk on Jun 06, 2016 at 09:07 UTC |