Warning: Rox is still very early in development and will likely change drastically in upcoming releases.
This is the main repository for the Rox programming language.
Rox
can be installed using the cargo
command line tool:
cargo install rox-lang
Rox
files can be either output as an executable or run directly using the JIT compiler.
To output an executable, run rox build yourScript.rox -o yourExecutable
.
This compiles and links the executable using your native C compiler.
If you want to skip the linking step, you can use the --no-link
flag.
To use Rox
's JIT compiler, use rox run yourScript.rox
.
For more details on Rox
's CLI, see rox --help
.