RosettaCodeData/Task/Loops-Break/Nim/loops-break.nim

10 lines
109 B
Nim
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
import math
while true:
let a = random(20)
echo a
if a == 10:
break
let b = random(20)
echo b