RosettaCodeData/Task/Loops-Do-while/Red/loops-do-while.red

8 lines
84 B
Text
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
Red []
i: 0
until [
?? i
i: i + 1
i % 6 = 0 ;; loop , until this is true...
]