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