Skip to content
This repository has been archived by the owner on Nov 18, 2023. It is now read-only.

Releases: jfourkiotis/golox

golox-0.13

13 Sep 12:32
93b5ad9
Compare
Choose a tag to compare

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