I want to be able to run a function with a variable number of parameters in Perl6, but after reading through https://docs.perl6.org/language/functions#Arguments I don\'t see
You can use signature destructuring
sub some-test(*@all [$first, *@rest]) { ... } # must have 1 or more parameters