7 lines
84 B
Text
7 lines
84 B
Text
for (1..10) { |i|
|
|
print i;
|
|
i == 10 && break;
|
|
print ', ';
|
|
}
|
|
|
|
print "\n";
|