Category:TIScript: Difference between revisions

From Rosetta Code
Content added Content deleted
No edit summary
mNo edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{language}}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 [[bytecode]]s and VM running that bytecodes. VM uses heap with garbage collector.
==={{header|TIScript}}===


Please read my article [http://www.codeproject.com/KB/recipes/TIScript.aspx TIScript vs JavaScript]. TIScript is hosted on [http://code.google.com/p/tiscript/ GoogleCode]
TIScript is a language that uses JavaScript as a base with some Python features added: classes and namespaces, properties, decorators, etc.


Minimal hello-world in TIScript:
<lang tiscript>stdout.println("Hello world");</lang>
<lang javascript>stdout.println("Hello world");</lang>

Latest revision as of 06:11, 16 May 2011

Language
TIScript
This programming language may be used to instruct a computer to perform a task.
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using 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: <lang javascript>stdout.println("Hello world");</lang>

Subcategories

This category has the following 3 subcategories, out of 3 total.

Pages in category "TIScript"

The following 5 pages are in this category, out of 5 total.