- or download this
my %teams = ( ... );
my %restaurants = ( ... );
...
teams => \%teams,
restaurants => \%restaurants,
);
- or download this
my $teams = { ... };
my $restaurants = { ... };
...
teams => $teams,
restaurants => $restaurants,
);
- or download this
my %Businesses = (
teams => {
...
...
},
);
- or download this
$Businesses{teams}{NFL}{JETS}
- or download this
... NFL => [ qw{ JETS PATRIOTS GIANTS } ], ...