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 e0e921602d Fix expression parser 1 year ago
.task/checksum Fix expression parser 1 year ago
ast Fix expression parser 1 year ago
cmd Fix expression parser 1 year ago
errors Add expression parser 1 year ago
lox Fix expression parser 1 year ago
parser Fix expression parser 1 year ago
scanner Fix expression parser 1 year ago
token Add Scanner 1 year ago
.gitignore Initialize project 1 year ago
README.md Initialize project 1 year ago
Taskfile.yml Fix expression parser 1 year ago
go.mod Initialize project 1 year ago

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