- or download this
%movies = (
'Gone with the Wind' => {
...
}
# etc.
);
- or download this
for $key (sort keys %movies) {
print "$key:\n";
...
Year: 1939
Stars: Judy Garland, Billie Burke
Director: Victor Fleming
- or download this
package MyDVDs;
...
$self->{director} = shift if @_;
return $self->{director};
}
- or download this
use MyDVDs;
...
Year: 1939
Stars: Judy Garland, Billie Burke
Director: Victor Fleming