Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    while(my ($key, $val) = each %capital) {
        say "key: $key, val: $val";
    }
    
  2. or download this
    Countries starting from Germany:
    key: Germany, val: Berlin
    ...
    key: France, val: Paris
    key: England, val: London
    key: Egypt, val: Cairo