Crates.io | clue |
lib.rs | clue |
version | 3.4.7 |
source | src |
created_at | 2022-08-17 17:40:10.289643 |
updated_at | 2024-03-29 12:00:20.59389 |
description | C/Rust like programming language that compiles into Lua code |
homepage | |
repository | https://github.com/ClueLang/Clue |
max_upload_size | |
id | 647658 |
size | 46,668 |
Clue is a programming language that compiles blazingly fast into Lua code with a syntax similar to languages like C or Rust.
Clue tries to be almost as simple as Lua (with only a slightly more advanced syntax) but adds many optional features that can make code look better or make some things (like metatables) easier to code.
Clue does not compile to a specific version of Lua: flags can be toggled to alter the output to allow most if not all versions or modifications of Lua to be compiled to with Clue.
{}
instead of then
/do
/repeat
and end
/until
// ...
or /* ... */
If you want a complete documentation of every change and addition in Clue check the wiki.
@ifos linux {
@define GREETING "Hello, Linux user "
} @else_ifos macos {
@define GREETING "Hello, MacOS user "
} @else {
@define GREETING "Hello, Windows user "
}
@macro GREET(target) { $GREETING .. $target .. "!" }
print($GREET!("Maiori"))
local fn add(x = 0, y = 0) {
return x + y
}
global n = 1
while n < 10 {
n += add($, $)
match n {
3 => {
continue
}
4 if x => {
break
}
default => {
print(n < 3 ? n : -n)
}
}
}
More examples can be found in:
cargo install clue
clue
in the console to run the compiler, it will explain the restClue supports extra features that can be toggled when installing:
interpreter
: adds the --execute
flag to let Clue run the generated output using mluarpmalloc
: uses rpmalloc to improve performance, not available on all platformsBy default Clue enables both features.
These can be downloaded in the latest release.
sudo dpkg -i clue_<version>_<arch>.deb
sudo rpm -i clue-<version>.<arch>.rpm
paru -S clue
yay -S clue
git clone https://aur.archlinux.org/clue.git
cd clue
makepkg -si
clue.exe
in the PATH variableclue
in your cmd/PowerShell to run the compiler, it will explain the restThere are still features that I'm considering adding and others that will be added soon. The most likely ones to be added in the future are:
For any suggestion or bug you can make a github issue. If you need help with the language itself, you can check out the Discord server.
I hope Clue will be useful to you :)
I have no clue.