>>-NOP--;------------------------------------------------------><
NOP is a dummy instruction that has no effect. It can be useful as the target of a THEN or ELSE clause:
Select
when a=c then nop /* Do nothing */
when a>c then say 'A > C'
otherwise say 'A < C'
end