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

jfourkiotis/golox

Repository files navigation

The Lox interpreter written in Go.

Current status: Feature Complete.

Extra features

  • continue statement
  • break statement
  • comma operator (,)
  • ternary operator (?:)
  • power operator (**, right associative)
  • uninitialized variable access is a runtime error
  • unused local variables, functions and classes is an error
  • class properties
  • class methods

Build Status