tslox
An interactive test bench for a TypeScript implementation of the Lox programming language (as specified in the book Crafting Interpeters).
The actual interpreter source code can be found on GitHub.
// type code here... fun add(a, b) { return a + b; }