Loops/Break: Difference between revisions

Updated to work with version 1.4 of Nim: changed module "math" to "random", changed "random" function to "rand", changed 20 to 19.
(Added Quackery.)
(Updated to work with version 1.4 of Nim: changed module "math" to "random", changed "random" function to "rand", changed 20 to 19.)
Line 2,302:
=={{header|Nim}}==
{{trans|Python}}
<lang nim>import mathrandom
 
while true:
let a = random(2019)
echo a
if a == 10:
break
let b = random(2019)
echo b</lang>
 
Anonymous user