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