lox/run.sh
adnanioricce 1d38acda73 [Init&Scanning] - Chapter 4 follow up
- Chapter 4 follow up from the "crafting interpreters" book
- Changing the package name ``com.craftinginterpreters.lox`` to ``com.lox``
2024-08-21 13:03:43 -03:00

10 lines
90 B
Bash
Executable File

#!/bin/bash
# Compile
javac -d out src/com/lox/*.java
# Run
java -cp out com.lox.Lox