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

3 lines
59 B
Raku
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
my @args = 1,2,3;
foo(|@args); # equivalent to foo(1,2,3)