Help for this page

Select Code to Download


  1. or download this
    my %foo = (
               animal => 'monkey',
               fish   => 'tuna',
    ...
    while (my ($key, $value) = each %foo) {
        print "KEY: $key\n  VALUE: $value\n";
    }
    
  2. or download this
    KEY: insect
      VALUE: spider
    KEY: animal
      VALUE: monkey
    KEY: fish
      VALUE: tuna