in reply to Iterating over verbatim hash reference
You're the first person to call it verbatim hash in 10 years :) SPRINGLEfor( my $h = { qw' x 5 y 8 ' }; my($r,$s)=each %$h; ){ print " $r = $s \n"; } __END__ y = 8 x = 5
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Iterating over verbatim hash reference
by rovf (Priest) on Jan 21, 2010 at 14:20 UTC | |
by AnomalousMonk (Archbishop) on Jan 21, 2010 at 18:53 UTC | |
by Anonymous Monk on Jan 21, 2010 at 14:31 UTC |