Help for this page

Select Code to Download


  1. or download this
    foreach my $city ( @myCities ) {
        # $city is 'Baltimore' the fist time
        # $city is 'Chicago' the second time
        # etc.
    }
    
  2. or download this
    foreach my $city ( @myCities ) {
        print "\$city = '$city'\n";
    }