RosettaCodeData/Task/Loops-Break/Arc/loops-break.arc

8 lines
131 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(point break
(while t
(let x (rand 20)
(prn "a: " x)
(if (is x 10)
(break)))
(prn "b: " (rand 20))))