lox_one 0.1.0

A tree-walking interpreter for the Lox programming language.
Documentation
var x = 0;

while(x < 10) {
    print x;
    x = x + 1;
}