lbi
lbi copied to clipboard
Lua Bytecode Interpreter
Results
2
lbi issues
Sort by
recently updated
recently updated
newest added
This repository hasn't been touched in ages but it is still useful so I would like to point something out to those who use it. The program: ```lua local functions...
Rudimentary fix for [this issue](https://github.com/JustAPerson/lbi/issues/3). Program: ``` local functions = {} for i = 1, 10 do functions[i] = function() print(i) end end functions[2]() functions[9]() ``` Output: ``` 2 9...