(weld "o" "k")
a tape is a list, so weld joins two of them.
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)
weld joins two lists end to end.
(weld `(list @)`~[1 2] `(list @)`~[3 4]) is ~[1 2 3 4].