This repository has been archived by the owner on Nov 18, 2023. It is now read-only.
Releases: jfourkiotis/golox
Releases · jfourkiotis/golox
golox-0.13
The Lox interpreter written in Go.
Current status: Feature Complete.
Extra features
continue
break
- comma operator (
,
) - ternary operator (
?:
) - power operator (
**
, right associative) - uninitialized variable access is a run-time error
- unused local variables, functions and classes is an error
- class properties
- class methods