Category:TIScript: Difference between revisions

Content added Content deleted
No edit summary
Line 1: Line 1:
==={{header|TIScript}}===
==={{header|TIScript}}===


TIScript is a language that uses JavaScript as a base with some Python features added: classes and namespaces, properties, decorators, etc.
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.


<lang tiscript>stdout.println("Hello world");</lang>
<lang tiscript>stdout.println("Hello world");</lang>