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

6 lines
63 B
Text

1.to 5, { i |
1.to i, { j |
print "*"
}
print "\n"
}