RosettaCodeData/Task/Call-a-function/Perl-6/call-a-function-5.pl6

3 lines
59 B
Raku

my @args = 1,2,3;
foo(|@args); # equivalent to foo(1,2,3)