jlox is a julia based tree walk interpreter implementation for the Lox language.
Using jlox is as simple as:
julia jlox.jl <filepath>
Jlox supports all the lox language, in that sense it provides:
- Variables
- Conditions
- Loops
- Functions
- Object oriented programming
There are a lot of areas that are missing:
- Testing: Not a lot of tests
- Error handling is kinda weak.
- No standard library (yet)
- No repl