Anthony J. Breeds-Taurima wrote:
> <== randomize ==>
> #!/usr/bin/perl
> ## print a file in random order
> while(<>) {
> $_{$_}=0
> }
> foreach (keys%_) {
> print
> }keys is hardly random. It always outputs the keys in the same order for a given set of keys. -- see shy jo

