Clue
Clue copied to clipboard
C/Rust like programming language that compiles into Lua code
Currently, Clue does not support (first-class) block expressions. The main challenge with introducing block expressions to Clue is how to distinguish them from table expressions.
There might be a way of putting Clue's modules directly into Lua's packages, that way `require(...)` could be used to load both... This should analyzed more before proceeding and must...
Closes #147 Add `const` support for Lua 5.4; it implicitly add `local` to all `const`s
Lua recently added support for constant variables in version 5.4. It would be very useful if clue also had consts.