Help for this page

Select Code to Download


  1. or download this
    my %countries = ();
    my $foo = "US:New York";
    my ($country, $city) = (split /:/, $foo);
    push @{ $countries{$country} }, $city;
    
  2. or download this
    foreach my $city (@{$countries{$country}}) {
        print "$city\n";
    }