Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 453 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 453 Bytes

These are implementations of Lox langauge defined in https://craftinginterpreters.com/. Python and C implementation follow the book spec closely. (Although they still diverge at some places).

PyLox

This implementation diverges in some places, like the implementation of super and this implementation throws a syntax error instead of runtime error for undeclared varaibles.

Clox

C Implementation of lox

Rlox (WIP)

Rust Implementation of lox