9 lines
96 B
Text
9 lines
96 B
Text
|
|
while true
|
||
|
|
let r rand 20
|
||
|
|
println r
|
||
|
|
if r = 10
|
||
|
|
break
|
||
|
|
endif
|
||
|
|
println rand 20
|
||
|
|
endwhile
|