Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    while (my ($key, $value) = each %myhash) {
        print "$key: $value\n";
    }
    
  2. or download this
    green: 311
    blue: 45
    red: 27
    yellow: 114