use strict;
use warnings;
my %table = qw/schmoe joe smith john simpson bart/;
my $da =1;
my($key, $value); # Declare two variables at once
while ( ($key, $value) = each(%table) )
{
$table{$key} = ++$da;
}
print %table;
出力:
schmoe2smith3simpson4
届くことを期待していた2345...
私の何が問題なのforeach
ですか?