RosettaCodeData/Task/Loops-For/EGL/loops-for.egl

9 lines
123 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
str string;
for ( i int to 5 )
str = "";
for ( j int to i )
str += "*";
end
SysLib.writeStdout(str);
end