7 lines
71 B
Ruby
7 lines
71 B
Ruby
|
|
(1..5).each do |i|
|
||
|
|
(1..i).each do |j|
|
||
|
|
print "*"
|
||
|
|
end
|
||
|
|
puts
|
||
|
|
end
|