It looks like you're new here. If you want to get involved, click one of these buttons!
function test(params) print("params length: ", #params) end test({"a", "b", "c"}) test{"a", "b", "c"}
params length: 3 params length: 3
Comments