As mentioned above, LuneScript is a language that covers Lua’s concerns, and is a transcompiler that can convert code developed with LuneScript into Lua code. LuneScript has the following features. NULL safety. Since it is a statically typed language, simple mistakes can be found at compile time by type checking. Type inference minimizes the effort of type declaration. With generics, it is possibl

