Fay
Fay
In Lua 5.3, function `load` accepts four arguments, the last one being `env`, which is a table if provided. So in Lua 5.3 you basic do: ``` local i =...
When running from cli tool `moon`, moonscript catches any error generated and rewrite its traceback's line number and the `moonscript_chunk` to `main chunk`. This can be found in [here](https://github.com/leafo/moonscript/blob/master/moonscript/errors.moon#L39), where...
Currently, moonc statement compiler compiles "fndef" node into two separate lines: ```moonscript funcname = -> ``` into ```lua local funcname funcname = function() end ``` Which is not desirable, as...