RosettaCodeData/Task/Loops-For/Wren/loops-for.wren

5 lines
77 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for (i in 1..5) {
for (j in 1..i) System.write("*")
System.print()
}