Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    (push @one , $hash{$_}), push @two, $_ foreach ( keys %hash );
    
    print "@one\n@two";
    
  2. or download this
    one three two
    1 3 2