RosettaCodeData/Task/Loops-N-plus-one-half/Red/loops-n-plus-one-half.red
2023-07-01 13:44:08 -04:00

8 lines
79 B
Text

Red[]
repeat i 10 [
prin i
if 10 = i [break]
prin ", "
]
print ""