Hi,
can any one tell me what (how) the following code actually does:
@o{qw(a b c)} = ($a, $b, $c);
"o" looks like it wants to be an array, but the only thing that seems to print values is if you treat "o" like a hash. like so:
foreach $x (keys %o) {
print "$x, $a{$x}\n";
}
what gives?
thanks