12 lines
273 B
Bash
Executable File
12 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Compile Lox
|
|
javac -d out src/com/lox/*.java
|
|
# Compile Lox tool
|
|
javac -d out src/com/tool/*.java
|
|
# Run Lox interpreter
|
|
java -cp out com.lox.Lox $1
|
|
# Run Lox ast print printer
|
|
# java -cp out com.lox.AstPrinter
|
|
# Run Lox tool
|
|
# java -cp out com.tool.GenerateAst |