4 lines
69 B
Swift
4 lines
69 B
Swift
for i in 1...10 {
|
|
|
|
print(i, terminator: i == 10 ? "\n" : ", ")
|
|
}
|