Skip to content

AndreiDuma/crafting-interpreters

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 

Repository files navigation

Haskell and Java implementations of Lox

Lox is the language described in Robert Nystrom's excellent book Crafting Interpreters. This repository contains:

  • Hlox: my Haskell implementation of the tree-walk interpreter for Lox;
  • Jlox: the Java implementation, as described by Robert Nystrom in his book.