What is output: sub foo($x, ?$y, [EMAIL PROTECTED]) { say "x = $x; y = $y; z = @z[]"; }
my @a = (1,2,3); foo($x, @a); Thanks, Luke
What is output: sub foo($x, ?$y, [EMAIL PROTECTED]) { say "x = $x; y = $y; z = @z[]"; }
my @a = (1,2,3); foo($x, @a); Thanks, Luke