|
||
---|---|---|
src/com/craftinginterpreters/lox | ||
.gitignore | ||
README.md | ||
sample-code.lox |
README.md
Crafting Interpreters
Notes
https://notes.velouria.dev/Reading/Crafting-Interpreters
Running
cd src
javac -d ../bin com/craftinginterpreters/lox/*.java
cd ..
java -cp bin com.craftinginterpreters.lox.Lox
jlox [script]
Or
java -cp bin com.craftinginterpreters.lox.Lox sample-code.lox