!!
puzzles-2
(crip "{<(add 2 3)>}")

spliced

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)

add sums two atoms.

(add 2 3) is 5.