Compile a Hello World from Typescript to Lua ============================================ With the help of [https://typescripttolua.github.io/](https://typescripttolua.github.io/) compile ``` console.log("Hello"); ``` to: ```lua print("Hello") ```