Help for this page

Select Code to Download


  1. or download this
    my %forward = (
      a => 1,
    ...
    for (sort keys %reverse) {
      print $_, ":", $reverse{$_}, "\n";
    };
    
  2. or download this
    use strict;
    use warnings;
    ...
    
    print $_, ":", $reverse_month{$_},"\n"
      for sort { $a <=> $b} keys %reverse_month;