9 lines
123 B
Text
9 lines
123 B
Text
|
|
str string;
|
||
|
|
for ( i int to 5 )
|
||
|
|
str = "";
|
||
|
|
for ( j int to i )
|
||
|
|
str += "*";
|
||
|
|
end
|
||
|
|
SysLib.writeStdout(str);
|
||
|
|
end
|