Help for this page

Select Code to Download


  1. or download this
    *apple_proc = sub { 
            my $item = shift; 
    ...
            apple_pulp($item);
            };
    # same for bananas here.
    
  2. or download this
    foreach my $item (@items) {
        SWITCH: for ($type) { # not sure from the writeup where
    ...
          warn "Unknown thingy: $type\n"; # Default case
        }
    }