14 lines
205 B
Perl
14 lines
205 B
Perl
|
#!/usr/bin/perl -w
|
||
|
|
||
|
use strict;
|
||
|
|
||
|
my %where = (
|
||
|
A => "AA",
|
||
|
B => "BB",
|
||
|
C => "CC",
|
||
|
D => "DD"
|
||
|
);
|
||
|
|
||
|
foreach (values %where) {
|
||
|
print "someone lives in $_\n";
|
||
|
}
|