RosettaCodeData/Task/Loops-Break/Hexiscript/loops-break.hexi

9 lines
96 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
while true
let r rand 20
println r
if r = 10
break
endif
println rand 20
endwhile