Help for this page

Select Code to Download


  1. or download this
      use Tie::IxHash;
    
      my @Loh;
    ...
        # a separate instance of the lexical %hash
        #   is created each time through the loop
      }
    
  2. or download this
      for (qw/Just another Perl hacker/) {
        $LoH[0]{$_} = $_;
      }
      print join(' ', keys %{ $LoH[0] }), "\n";