macro mod until code example
Example: macro mod until
UNTIL(<condition>)
Direct Url: UNTIL | Category: Control Flow
Description
Completes a loop started with DO but exits the loop if <condition> is met.
example:
do;
until(YPOS = 1)
exits the loop when the ypos is 1.