Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 461 Bytes

README.md

File metadata and controls

14 lines (13 loc) · 461 Bytes

crlox - Coleton's Lox Implementation in Rust

An ongoing implementation of the Interpreted Lox programming language in Rust from Robert Nystrom's wonderful book Crafting Interpreters.

Chapters Implemented:

  • Scanning
  • Representing Code
  • Parsing Expressions
  • Evaluating Expressions
  • Statements and State
  • Control Flow
  • Functions
  • Resolving and Binding
  • Classes
  • Inheritance