- or download this
package Food;
...
$self->{_entree} = "soup";
$self->{_dessert} = "ice cream";
}
- or download this
sub initialize {
my $self = shift;
...
$self->{_entree} = shift;
$self->{_dessert} = shift;
}
- or download this
my $meal = new Food("tea", "sushi", "creme egg");