4 lines
68 B
Text
4 lines
68 B
Text
//Prints odd numbers from 1 to 10
|
|
for i in 1^2..10 {
|
|
print(i)
|
|
}
|