RosettaCodeData/Task/Loops-For/Sidef/loops-for-3.sidef

5 lines
69 B
Plaintext

for i in (1..5) {
for j in (1..i) { print '*' }
print "\n"
}