14 lines
223 B
Perl
14 lines
223 B
Perl
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
my %where = (
|
|
G => "Dallas",
|
|
L => "Exeter",
|
|
I => "Reading",
|
|
S => "Oregon"
|
|
);
|
|
|
|
foreach (keys %where) {
|
|
print "$_ lives in $where{$_}\n";
|
|
} |