Help for this page

Select Code to Download


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