An open API service indexing awesome lists of open source software.

https://github.com/jdcodework/rslox

Implementation of the lox language proposed by the book “Crafting Interpreters”.
https://github.com/jdcodework/rslox

crafting-interpreters interpreted-programming-language lox-interpreter rust-lang

Last synced: about 1 month ago
JSON representation

Implementation of the lox language proposed by the book “Crafting Interpreters”.

Awesome Lists containing this project

README

          

# rslox

An implementation of the Lox language in Rust, following the book [Crafting Interpreters](https://craftinginterpreters.com/) by Robert Nystrom.

---

## 🚀 Quick Start

```bash
git clone https://github.com/JDCodeWork/rslox.git
cd rslox

cargo build --release

./target/release/tw run --help
./target/release/vm run --help
```

## 🛠️ Handy Commands

```bash
cargo test
cargo build --release
```