"Source: Text/System/State.text";
"Line: 999";
"Date: Thu Sep 25 21:32:21 2025";
"Main: Fri Sep 26 14:29:19 2025";
// 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);
