- or download this
sub N_scalars {
my ($prefix, $qty) = @_;
...unknown magic here...
}
- or download this
N_scalars("foo",5);
- or download this
$foo_1 = '';
$foo_2 = '';
$foo_3 = '';
$foo_4 = '';
$foo_5 = '';
- or download this
sub arb_scalars {
foreach $foo (@_) {
...unknown magic here...
}
}
- or download this
arb_scalars("alfa","bravo","charlie");
- or download this
$alpha = '';
$bravo = '';
$charlie = '';