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