Wolf Wejgaard
Wolf Wejgaard
* Literate Programming (Donald E. Knuth) * Software Development and Reality Construction (C. Floyd et al.) * Janus: A Summing Up (Arthur Koestler)
"Janus" deserves an explanation, I agree. In "Janus, A Summing Up" Arthur Koestler coined the term Holon to describe an entity that is both a whole built of parts and...
## Short Answer TclForth replaces CREATE DOES> by Objecttypes. Objecttypes let you create data types as objects with private messages and methods. The objecttypes string and array make use of...
## Long Answer INIT ``` > : init ( bits count -- ) > 0 do dup 1 and c, 2/ loop drop ; > > 20 constant size >...