Help for this page

Select Code to Download


  1. or download this
    my @order = qw(Sports Books Places);
    my %hash;
    ...
    
    #retrieve them in the desired @order
    print map { "$_ => ".(join ',',@{$hash{$_}})."\n" } @order ;