6 lines
69 B
Crystal
6 lines
69 B
Crystal
(1..).each do |i|
|
|
print i
|
|
break if i == 10
|
|
print ", "
|
|
end
|
|
puts
|