Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lox Java Interpreter

A simple interpreter for the Lox programming language, implemented in Java.
Based on the language and design from Crafting Interpreters by Robert Nystrom.

Lox program

print "Hello, world!";

var x = 10;
for (var i = 0; i < x; i = i + 1) {
  print i;
}

Tip

You can find more lox code snippets under the test folder.

About

Java interpreter for Lox programming language

Topics

Resources

Stars

Watchers

Forks

Contributors

Languages