D
doolittle
My code was not working in an expected way, so i replaced the line
while ((my $key, my $value) = each %boardhash) {
....
}
with the lines
for (keys(%boardhash)){
my $value = $boardhash{$_};
....
}
and it worked differently (more better).
while ((my $key, my $value) = each %boardhash) {
....
}
with the lines
for (keys(%boardhash)){
my $value = $boardhash{$_};
....
}
and it worked differently (more better).