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