in reply to Re^5: What is happening ?
in thread problem using foreach and each with hash ref
But B::Deparse reveals#!/usr/bin/perl -- use strict; use warnings; my %f = 1 .. 4; for( ; my($k,$v) = each %f ; ){ print qq!($k)=($v)\n!; } __END__ (1)=(2) (3)=(4)
So I'm not sure :Duse warnings; use strict 'refs'; my(%f) = 1..4; while (my($k, $v) = each %f) { do { print "($k)=($v)\n" }; } __DATA__
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: What is happening ?
by grizzley (Chaplain) on Aug 19, 2009 at 10:31 UTC |