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

4 lines
77 B
Text

for (i in 1..5) {
for (j in 1..i) System.write("*")
System.print()
}