kyrre / rs-lox

A tree-walk interpreter and a bytecode virtual machine interpreter written in the Rust Programming Language.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Crafting Interpreters in Rust – rs-lox

My implementation of the first interpreter presented in "Crafting Interpreters", by Robert Nystrom.

This repository holds two implementations for the same language. The first one, tree-lox implements a tree-based interpreter and the other, vm-lox uses a bytecode virtual machine to interpret the code.

Quick start

This project can by compiled using Cargo. Use the --project flag to choose the implementation.

Run an existing file:

$ cargo r -p tree-lox -- script-name.lox

Open the REPL:

$ cargo r -p tree-lox

Project overview

todo

License

Code licensed under the MIT license.

About

A tree-walk interpreter and a bytecode virtual machine interpreter written in the Rust Programming Language.

License:MIT License


Languages

Language:Rust 100.0%