This is a compiler for the Limonite programming language.
Limonite is a relatively basic programming language written in rust using LLVM as a backend.
Make sure you have installed all the dependencies.
Download and build Limonite.
Run the following commands
git clone https://github.com/TheDan64/limonite.git
cd limonite
cargo build
Without LLVM dependency
git clone https://github.com/TheDan64/limonite.git
cd limonite
cargo build --no-default-features
Example:
var s = "Spam the world!"
var i = 10
>> NOTE: The following requires tab-indentation
while i > 0,
i -= 1
print(s)