6 lines
76 B
Text
6 lines
76 B
Text
|
|
for i thru 5 do (
|
||
|
|
s: "",
|
||
|
|
thru i do s: sconcat(s, "*"),
|
||
|
|
print(s)
|
||
|
|
);
|