RosettaCodeData/Task/Loops-Break/Arc/loops-break.arc
2023-07-01 13:44:08 -04:00

7 lines
131 B
Text

(point break
(while t
(let x (rand 20)
(prn "a: " x)
(if (is x 10)
(break)))
(prn "b: " (rand 20))))