"Source: Text/System/State.text";
"Line: 1681";
"Date: Wed Mar 24 09:58:40 2021";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/System/State.text, line: 1681
// Example: H1E17 ()
print "Example: H1E17";
ei := GetEchoInput();
SetEchoInput(true);
// no-test
x := eval "1+1";  // OK
x;
eval "1+1;"; // not OK
eval "return 1+1;"; // OK
eval "x + 1"; // OK
eval "x := x + 1; return x"; 
SetEchoInput(ei);
