6 lines
90 B
Text
6 lines
90 B
Text
while (true) {
|
|
def x = random(20)
|
|
println x
|
|
break if x == 10
|
|
println random(20)
|
|
}
|