Help for this page

Select Code to Download


  1. or download this
    %pets = (
              'pony' => 2,
              'cat' => 2,
              'dog' => 2
            );
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    foreach (sort keys %pets) {
      print "$_: $pets{$_}\n";
    }