- or download this
FLINTSTONES -- BARNEY, FRED, WILMA
JETSONS -- MAX, TONY, WILMA
SIMPSONS -- LISA, BARNEY, WILMA, HOMER
ALCATRAZ -- ELIJAH, MAX, WILMA
- or download this
my %is_in_show = (
MAX => [ 'JETSONS', 'ALCATRAZ' ],
...
ELIJAH => [ 'ALCATRAZ' ],
...
);
- or download this
while (<FILE>) {
chomp;
...
push(@{$is_in_show{$name}}, $show);
}
}
- or download this
use strict;
use warnings;
...
JETSONS -- MAX, TONY, WILMA
SIMPSONS -- LISA, BARNEY, WILMA, HOMER
ALCATRAZ -- ELIJAH, MAX, WILMA