📜  宏 mod until - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:51.379000             🧑  作者: Mango

代码示例1
UNTIL()
Direct Url: UNTIL | Category: Control Flow
Description
Completes a loop started with DO but exits the loop if  is met.

example:
do;
until(YPOS = 1)

exits the loop when the ypos is 1.