22 lines
315 B
Markdown
22 lines
315 B
Markdown
## 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
|
|
``` |