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

rodaine/rlox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rlox Build Status

Lox Interpreter/REPL written in Rust.

Install

git checkout https://github.com/rodaine/rlox.git
cd rlox
cargo install

rlox            # starts the REPL
rlox script.lox # interprets the file

Development

# linting - clippy is somewhat unstable
rustup run nightly cargo install clippy
rustup run nightly cargo clippy

# unit tests
cargo test --verbose