compiler
Klox: A Kotlin implementation of lox with a JVM backend built using ProGuardCORE
October 21, 2021 - 07:12
A Kotlin implementation of lox, the language from Crafting Interpreters, with a JVM backend built with ProGuardCORE. The code is availble on GitHub here.
Example Lox program
fun hello() { print "Hello World"; } hello();
