Recently I came across a question that I couldn’t answer myself, and nor could anyone else in the discord server I’m in.
local numTable = {1,4,2,1,5,6,2,6,1,2,6,7,1,5,6,1,2,5,6,1,7,7,8,2,3,6}
local function maxNum(...)
return print(math.max(...))
end
maxNum(table.unpack(numTable))
Is there a limit to how many values I can put inside “numTable”? I was recently told it depends on the ‘devices ram’, but I’m not exactly sure how that would work or play part in this.