4 lines
91 B
Text
4 lines
91 B
Text
for int i = 0; i < 5; ++i
|
|
for int j = 0; j <= i; ++j do write("*") end
|
|
writeLine()
|
|
end
|