"Source: Text/System/State.text";
"Line: 999";
"Date: Wed Mar 24 09:58:40 2021";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/System/State.text, line: 999
// Example: H1E12 ()
print "Example: H1E12";
ei := GetEchoInput();
SetEchoInput(true);
x := 73; 
case Sign(x):
   when 1: 
      x, "is positive";
   when 0: 
      x, "is zero";    
   when -1:
      x, "is negative";
end case;
SetEchoInput(ei);
