The following code puzzles me
#!/usr/bin/perl -w use strict; my %hash; $hash{"key1"} = "value1"; $hash{"key2"} = "value2"; $hash{"key3"} = "value3"; # (1) this works... my %inverse_hash; %inverse_hash = reverse(%hash); print keys (%inverse_hash); # (2) this does not print keys (reverse (%hash));
Why does (1) work and (2) not. Both seem to do the same.
Sniplet (2) gives the error; "Type of arg 1 to keys must be hash (not reverse)", however doesn't reverse return a hash?
Have Fun
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |