(crip "n={<22>}")
braces splice a tape into a tape; <...> prints a value as a tape first.
crip packs it.
glossary
%: calls a gate with several arguments, gathering them into one sample.
%:(add 2 3) is 5.
irregular forms:
(gate a b c) is %:(gate a b c)
crip packs a tape into a cord - the reverse of trip.
it turns a tape back into a cord like 'ok'.
:* makes a tuple of many elements, nesting to the right.
:*(1 2 3) is [1 2 3].
irregular forms:
[a b c d] is :*(a b c d)