max evaluates to the larger of two atoms.
max
%: calls a gate with several arguments, gathering them into one sample.
%:
%:(add 2 3) is 5.
%:(add 2 3)
5
irregular forms:
(gate a b c) is %:(gate a b c)
(gate a b c)
%:(gate a b c)
max is the larger of two atoms.
(max 3 8) is 8.
(max 3 8)
8