- Chapter 4 follow up from the "crafting interpreters" book - Changing the package name ``com.craftinginterpreters.lox`` to ``com.lox``
10 lines
90 B
Bash
Executable File
10 lines
90 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Compile
|
|
javac -d out src/com/lox/*.java
|
|
|
|
# Run
|
|
|
|
java -cp out com.lox.Lox
|
|
|