5 lines
69 B
Text
5 lines
69 B
Text
|
|
for i in (1..5) {
|
||
|
|
for j in (1..i) { print '*' }
|
||
|
|
print "\n"
|
||
|
|
}
|