"Source: Text/System/State.text";
"Line: 344";
"Date: Thu Sep 25 21:32:21 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/System/State.text, line: 344
// Example: H1E6 ()
print "Example: H1E6";
ei := GetEchoInput();
SetEchoInput(true);
x := 1;
S := { };
for i := 1 to 10 do
   S join:= { x };
   x *:= 2;
end for;
S;
SetEchoInput(ei);
