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.
|
# 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
|
|
```
|