Clue icon indicating copy to clipboard operation
Clue copied to clipboard

C/Rust like programming language that compiles into Lua code

Results 24 Clue issues
Sort by recently updated
recently updated
newest added

There's the lack of a spec sheet for the language. Well, it is based on Lua and there's the wiki that explains the main differences but what about the new...

documentation
question

About docs, I'm not talking of the wiki (although that needs some rework) but about the codebase. If one wants to start contributing to the project they need first to...

documentation

At the current state, the compiler doesn't check if a function called in a file from another file is either local or global thus making errors go through the Lua...

enhancement
experimental

If for example you had a big Lua codebase that you wanted to convert to clue it would be a bit of a pain. The job of this compiler would...

I just found out about the project and wanted to fiddle with it a bit, but when I searched for a Clue extension on VSCode it wasn't there. I think...

enhancement
important

When I use Clue to generate lua, I found that the original comments are discarded, can the compiler add an option to keep the comments.

enhancement

At the current state, when called to compile an entire folder of Clue files, the compiler will compile the files one by one. That by itself isn't something bad, but...

enhancement
experimental

Clue supports renameable destructuring - `local {a => b} = t` read as "assign `t.a` to `local b`" - but currently only identifier fields are allowed (names that can index...

enhancement

To increment number in Clue we using ```lua x += 1 ``` But it's ugly(imho), it's rather to use increment operators since it can shorten many lines of code, for...

enhancement
experimental

There are no operator precedence rules followed when transforming bitwise operations into bitlib function calls when using `--bitwise library` or equivalent. The below code ```lua print( ~2 & a ==...

bug