is there a way to pass an array to a function directly like function(["one","two","three"])?
In some cases I don't have to use the array outside the the function so I would like to avoid to do an array declaration before calling the function:
local $array = ["one","two","three"]
function($array)
In some cases I don't have to use the array outside the the function so I would like to avoid to do an array declaration before calling the function:
local $array = ["one","two","three"]
function($array)