8 lines
100 B
Text
8 lines
100 B
Text
go =>
|
|
N = 5,
|
|
foreach(I in 1..N)
|
|
foreach(_J in 1..I)
|
|
print("*")
|
|
end,
|
|
nl
|
|
end.
|