Skip to content

Releases: HallofFamer/KtLox

KtLox v1.2.0

24 Nov 09:48

Choose a tag to compare

KtLox v1.2.0 release with the following features

  • Full Fledged Standard Library: Boolean, Number, String, Array, Dictionary, DateTime, etc.
  • Move all native classes from common package to the std.lang package.
  • Allow customized runtime configurations for KtLox at startup with config.properties
  • Split the Number class, which will distinguish between integers and floating numbers.

KtLox v1.1.0

15 Oct 22:03

Choose a tag to compare

KtLox v1.1.0 release with the following features

  • Improved object model - Everything is an object, including nil, true, false, number, string, etc.
  • Framework for writing Native functions and classes.
  • Root class Object which serves as superclass of every class.
  • Remove print statement and replace it by print/println native functions.

KtLox v1.0.0

01 Oct 15:02
97211b0

Choose a tag to compare

The initial version of completed KtLox v1.0.0, it has basically what features are present in the original JLox, as well as some of the challenges(break, anonymous function, metaclass) implemented.