- or download this
sub foo {
print("There are ", 0+@_, " args\n");
...
my $n = 123;
foo(@a, $n);
- or download this
There are 4 args
They are a b c 123
- or download this
foo(\@a, $n);
- or download this
There are 2 args
They are ARRAY(0x1829aec) 123
- or download this
populateEventManifest(\@projectEvents, $eventManFh); # <-- extra \
...
$event->print($eventManFh);
}
}