Kryptostack
LANGUAGE

PostScript

Compatibility ...

Language Extensions

Unicode

UTF-8

All strings and names can contain Unicode characters.
They are encoded using UTF-8.

Stack Object

Stack objects are used internally by the interpreter. They are used to
construct the data structures for the operand stack, the execution stack,
and the dictionary stack.

Additionally, stack objects are compound objects such as arrays, dictionaries,
and strings. Related operators include:

stack specific: __endstack, $, dictstack$, execstack$, index$, is$, pop$, push$, count$, clear$, dup$, exch$, move$

polymorphic operators: get, put, forall, type

text representation: cvs, =, stack, __print, ==, pstack

type agnostic operators: def, dup, cvx, cvlit, xcheck, where, known, exch,
load, roll, ...

Operator

Details: Operators

Vocabulary

See VOCABULARY

Notes

Edge Case 1

quit )
is a valid programm. While the parser finds the syntax error, the execution
of the quit operator prevents it from taking effect.