Releases: HallofFamer/KtLox
Releases · HallofFamer/KtLox
KtLox v1.2.0
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
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
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.