fork download
  1. local funs = {}
  2.  
  3. for index = 1, 368 do
  4. funs[index] = function() print(index) end
  5. end
  6.  
  7. funs[8]()
  8.  
Success #stdin #stdout 0s 2788KB
stdin
Standard input is empty
stdout
8