All pastes #535572 Raw Edit

Someone

public text v1 · immutable
#535572 ·published 2007-06-04 03:24 UTC
rendered paste body
(looping)
O100 while [condition]
...
O100 endwhile

(looping, alternate structure)
O101 do
...
O101 while [condition]

(conditional)
O102 if [condition]
...
O102 else
...
O102 endif

(subroutine definition)
O103 sub
... (using #1 #2 #3)
O103 endsub

(subroutine call)
O103 call [1] [2] [3]