GitHub - franko/luajit-lang-toolkit: A Lua bytecode compiler written in Lua itself for didactic purposes or for new language implementations
LuaJIT Language Toolkit
The LuaJIT Language Toolkit is an implementation of the Lua programming language written in Lua itself.
It works by generating LuaJIT bytecode, including debug information, and uses LuaJIT's virtual machine to run the generated bytecode.
On its own, the language toolkit does not do anything useful, since LuaJIT itself does the same things natively.
The purpose of the language toolkit is to provide a starting point to implement a programming language that targets the LuaJI...
Read more at github.com