Help for this page

Select Code to Download


  1. or download this
    if ($self->hungry()) {
        $self->go_eat();
    ...
    }
    
    ....
    
  2. or download this
    my @dispatch = (
        [ sub { $_[0]->is_hungry }, sub { $_[0]->go_eat } ],
    ...
        $choice->[1]->( $self );
        last;
    }