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