- or download this
# Named binding...
($who, $why) := (why => $because, who => "me");
# same as: $who := "me"; $why := $because;
- or download this
return $sheep => %herd{$sheep}, $goats => %herd{$goats};
instead of
return *%herd;
- or download this
*%details = (who=>"me", why=>$because);
# same as: %details{who} := "me", %details{why} := $because;
- or download this
*%details := (who=>"me", why=>$because);