RosettaCodeData/Task/Loops-Do-while/OpenEdge-Progress/loops-do-while.openedge
2015-02-20 00:35:01 -05:00

6 lines
123 B
Text

DEFINE VARIABLE ii AS INTEGER.
DO WHILE ii MODULO 6 <> 0 OR ii = 0:
ii = ii + 1.
MESSAGE ii VIEW-AS ALERT-BOX.
END.