This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Better Lua | |
| -- my wishes for a Lua fork or patches for gamedev | |
| -- vars are local scope by default | |
| function defineVars() | |
| a = 1 | |
| end | |
| print(a) -- prints nil | |
| -- define globals |
OlderNewer