Skip to content

rkirsling/cclox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cclox

A C++ port of clox, the Lox language's bytecode VM (http://www.craftinginterpreters.com/).

See also dlox for my Dart port of the AST interpreter.

Disclaimer: cclox covers the material of Chapters 14-23 of the book. Namely, it has variables and control flow (with the same enhancements to them as dlox) but it does not have functions or classes.