"Source: Text/System/State.text";
"Line: 344";
"Date: Wed Mar 24 09:58:40 2021";
"Main: Thu May 25 10:02:38 2023";
// 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);
