- or download this
%data = << why dunno who them where there which this >>;
- or download this
(why => "dunno", who => "them", where => "there", which => "this")
- or download this
multi sub infix:=(List of Pair @assign is rw, List of Pair @values) re
+turns List of Pair {
my %assign := *@assign;
...
}
return *%assign;
}
- or download this
my $fish = "hest";
($sheep, $goats, $fish) := part Animal::Cat, @animals;
- or download this
my $hest = "hest";
%result := ($sheep, $goats, fish => $hest) := part Animal::Cat, @anima
+ls;
- or download this
($sheep, $goats, $fish => "hest") := part Animal::Cat, @animals;