Category:Toka: Difference between revisions

From Rosetta Code
Content added Content deleted
(→‎External Links: Updated url)
(Updated Links, description)
Line 1: Line 1:
[[Category:Solutions by Programming Language]]
[[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 (to call threaded code), a form of garbage collection, and various functions to aid in debugging and inspecting compiled code.
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 the [[MIT/X11 License]].
Toka is distributed under an [http://toka.s3.amazonaws.com/toka.html#license open-source license].


==External Links==
==External Links==
*[http://toka.charleschilders.com Toka Home]
*[http://toka.s3.amazonaws.com/index.html Toka Home]
*[http://toka.s3.amazonaws.com/toka.html Core Documentation]
*[http://toka.s3.amazonaws.com/library.html Library Documentation]
*[http://charleschilders.com:9812/ Dictionary Browser]

Revision as of 03:02, 13 September 2007


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