RosettaCodeData/Task/Loops-For/Red/loops-for.red
2023-07-01 13:44:08 -04:00

6 lines
61 B
Text

Red[]
repeat i 5 [
loop i [prin "*"]
prin newline
]