9 lines
158 B
Text
9 lines
158 B
Text
while (true) {
|
|
def a := entropy.nextInt(20)
|
|
print(a)
|
|
if (a == 10) {
|
|
println()
|
|
break
|
|
}
|
|
println(" ", entropy.nextInt(20))
|
|
}
|