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