Answers for "macro mod until"

0

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.
Posted by: Guest on March-25-2020

Browse Popular Code Answers by Language