Category:Toka: Difference between revisions

From Rosetta Code
Content added Content deleted
(New page: Category:Solutions by Programming Language Toka is a programming language with simple syntax, two stacks, and many similarities to Forth. Tcl is distributed under the [[MIT/X11 Lice...)
 
m (Expanded the description)
Line 1: Line 1:
[[Category:Solutions by Programming Language]]
[[Category:Solutions by 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 (to call threaded code), a form of garbage collection, and various functions to aid in debugging and inspecting compiled code.
Toka is a programming language with simple syntax, two stacks, and many similarities to Forth.


Tcl is distributed under the [[MIT/X11 License]].
Toka is distributed under the [[MIT/X11 License]].


==External Links==
==External Links==
*[http://charleschilders.com:9812 Toka Home]
*[http://charleschilders.com:9812 Toka Home]
*[http://charleschilders.com:9812/book.html Documentation]

Revision as of 03:16, 16 May 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 (to call threaded code), a form of garbage collection, and various functions to aid in debugging and inspecting compiled code.

Toka is distributed under the MIT/X11 License.

External Links