This is an example code, this is not my actual code.
table = {} tableNum = 1 table[1] = "test" function printer(param) print(param) end function main() printer(table[tableNum]) end main()
I would like the printer function to be called with this parameter but it doesn’t work. Please help.