some code
-- this is lua for i = 1, 5 do print('hi mom !') end -- cached fibonacci A = {} function f(x) if A[x] then return A[x] end if x <= 2 then A[x] = 1 return 1 end t = f(x-1) + f(x-2) A[x] = t return t end print(f(1000))
Execute
output