Help for this page

Select Code to Download


  1. or download this
        (
            'Chicago'    => 'USA',
    ...
            'Helsinki'   => 'Finland',
            'New York'   => 'USA',
        )
    
  2. or download this
        (
            'Finland' => [ 'Helsinki' ],
            'Germany' => [ 'Berlin', 'Frankfurt' ],
            'USA'     => [ 'Chicago', 'New York', 'Washington' ],
        )
    
  3. or download this
        use strict;
        use warnings;
    ...
                print "$country\t$city\n";
            }
        }