lox_one 0.1.0

A tree-walking interpreter for the Lox programming language.
Documentation
1
2
3
4
5
6
7
8
var x = 42;

print x;
{
    x = 69;
}

print x;