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

8 lines
96 B
Text

while true
let r rand 20
println r
if r = 10
break
endif
println rand 20
endwhile