Help for this page

Select Code to Download


  1. or download this
    my @array = split '', $string;
    @hash{@array} = map {ord} @array;
    
  2. or download this
    for my $key (reverse sort keys %hash) {
       print "$key: $hash{$key}\n"
    }