Skip to content
This repository has been archived by the owner on Jan 31, 2023. It is now read-only.

Latest commit

 

History

History
33 lines (20 loc) · 1.03 KB

README.md

File metadata and controls

33 lines (20 loc) · 1.03 KB

Rox Logo

Build Security audit

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.

Installation

Rox can be installed using the cargo command line tool:

cargo install rox-lang

Running

Rox files can be either output as an executable or run directly using the JIT compiler.

Compiling an executable

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.

Using the JIT compiler

To use Rox's JIT compiler, use rox run yourScript.rox.

For more details on Rox's CLI, see rox --help.