- or download this
my ($a, $b, $c);
- or download this
my ($a, $b, $c) = (0, 1, 2);
- or download this
my ($a, $b) = @_;
- or download this
for (1 .. $a_whole_lot)
{
my ($key, $value) = returnsAnArray ();
}
- or download this
codethatUsesFoo (getValue()) for 1 .. $a_huge_value;