Help for this page

Select Code to Download


  1. or download this
    my $itemInBasket = shoppingList( "sweater" );
    
  2. or download this
    my $item = shift();
    
  3. or download this
    return sub
      {
        my $otherItem = shift();
        print "I need to buy a $item and a $otherItem.\n";
      };
    
  4. or download this
    &$itemInBasket( "pair of shoes" );
    
  5. or download this
    my $otherItem = shift();
    print "I need to buy a $item and a $otherItem.\n";