All pastes #535564 Raw Edit

Someone

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

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

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

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

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