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