Installation
Installation
Section titled “Installation”NXL is currently developed from source.
Requirements
Section titled “Requirements”You need:
- Rust
- Cargo
- Git
Check your installation:
rustc --versioncargo --versionClone the repository
Section titled “Clone the repository”git clone https://github.com/xanmoy/nxl.gitcd nxlcargo buildFor an optimized build:
cargo build --releasecargo checkcargo run -- examples/hello.nxlThe -- separates Cargo arguments from arguments passed to the NXL executable.
cargo run -- examples/hello.nxl └── passed to NXLEventually the project will provide an installed executable:
nxl examples/hello.nxl