- or download this
my($foo);
...
$foo = getValue();
codeThatUsesFoo($foo);
}
- or download this
for ($i = 0; $i < $a_huge_value; $i++) {
my $foo = getValue();
codeThatUsesFoo($foo);
}
- or download this
my($key);
my($value);
...
for ($i = 0; $i < $a_whole_lot; $i++) {
my($key, $value) = returnsAnArray();
}