Lox implementation in Golang
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oabrivard 7da761a4de Add functions 1 year ago
.task/checksum Add functions 1 year ago
ast Add functions 1 year ago
cmd Add functions 1 year ago
errors Add expression interpreter 1 year ago
interpreter Add functions 1 year ago
lox Add print and expression statements 1 year ago
parser Add functions 1 year ago
scanner Add expression interpreter 1 year ago
testdata Add functions 1 year ago
token Add Scanner 1 year ago
.gitignore Add functions 1 year ago
README.md
Taskfile.yml Add print and expression statements 1 year ago
go.mod

README.md

golox

Lox implementation in Golang

Build with:

go build -o bin/golox

Run with no arguments for prompt interpreter:

bin/golox

Or with script name for script execution:

bin/golox lox_script_name