7 lines
61 B
Ruby
7 lines
61 B
Ruby
|
|
for i in 1..5
|
||
|
|
for j in 1..i
|
||
|
|
print "*"
|
||
|
|
end
|
||
|
|
puts
|
||
|
|
end
|