TIScript

TIScript is a language that uses JavaScript as a base with some Python features added: classes and namespaces, properties, decorators, etc. TIScript has a compiler producing bytecodes and VM running that bytecodes. VM uses heap with garbage collector.

Please read my article TIScript vs JavaScript. TIScript is hosted on GoogleCode

Minimal hello-world in TIScript:

stdout.println("Hello world");

Tasks