in reply to What is wrong with the code ?
for my $k1 (keys %hash) { for my $k2 (keys %hash) { next if $k1 eq $k2 and $skip_identical_keys; $cart_prod{$k1}{$k2} = ...; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: What is wrong with the code ?
by vennirajan (Friar) on Jan 18, 2006 at 08:14 UTC | |
by Anonymous Monk on Jan 18, 2006 at 08:27 UTC |