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 875373df43 Add local functions and closures 1 year ago
ast Add return statement 1 year ago
cmd Add return statement 1 year ago
errors Add expression interpreter 2 years ago
interpreter Add local functions and closures 1 year ago
lox Add print and expression statements 2 years ago
parser Add return statement 1 year ago
scanner Add expression interpreter 2 years ago
testdata Add local functions and closures 1 year ago
token
.gitignore Add functions 2 years ago
README.md
Taskfile.yml Add print and expression statements 2 years 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