Category:Toka: Difference between revisions

From Rosetta Code
Content added Content deleted
(Updated Links, description)
(Added Programming Language template)
Line 1: Line 1:
{{Programming Language}}Toka is a concatenative programming language with similarities to [[:Category:Forth|Forth]]. It has two accessible stacks for passing data, a dictionary which maps names to functions, an interpreter, a compiler (generating threaded code), a form of garbage collection, and various functions to aid in debugging and inspecting compiled code. Toka also has a set of optional libraries that extend the core language in many ways.
[[Category:Solutions by Programming Language]]

Toka is a concatenative programming language with similarities to [[:Category:Forth|Forth]]. It has two accessible stacks for passing data, a dictionary which maps names to functions, an interpreter, a compiler (generating threaded code), a form of garbage collection, and various functions to aid in debugging and inspecting compiled code. Toka also has a set of optional libraries that extend the core language in many ways.


Toka is distributed under an [http://toka.s3.amazonaws.com/toka.html#license open-source license].
Toka is distributed under an [http://toka.s3.amazonaws.com/toka.html#license open-source license].

Revision as of 03:41, 8 November 2007

Programming Language
This is a programming language. It may be used to instruct computers to accomplish a variety of tasks which may or may not be domain-specific.

Listed below are all of the tasks on Rosetta Code which have been solved using this programming language.


Toka is a concatenative programming language with similarities to Forth. It has two accessible stacks for passing data, a dictionary which maps names to functions, an interpreter, a compiler (generating threaded code), a form of garbage collection, and various functions to aid in debugging and inspecting compiled code. Toka also has a set of optional libraries that extend the core language in many ways.

Toka is distributed under an open-source license.

External Links