11 lines
190 B
Text
11 lines
190 B
Text
let write = process.stdout.write
|
|
|
|
for i in range(10) {
|
|
let n = i + 1
|
|
write(n.toString())
|
|
if (n == 5) {
|
|
write("\n")
|
|
continue
|
|
}
|
|
if (n < 10) {write(", ")}
|
|
}
|