5 lines
87 B
Text
5 lines
87 B
Text
for {
|
|
val i = random(0..19)
|
|
write i, " "
|
|
if i == 10 { writeln(); break }
|
|
}
|