5 lines
157 B
Text
5 lines
157 B
Text
(define loop -> (if (= 10 (PRINT (random 20)))
|
|
true
|
|
(do (PRINT (random 20))
|
|
(loop))))
|
|
(loop)
|