"Source: Text/System/Func.text";
"Line: 255";
"Date: Thu Sep 25 14:47:43 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/System/Func.text, line: 255
// Example: H2E2 ()
print "Example: H2E2";
ei := GetEchoInput();
SetEchoInput(true);
f := function(x, y: Proof := true, Al := "Simple")
   return <x, y, Proof, Al>;
end function;
f(1, 2);
f(1, 2: Proof := false);
f(1, 2: Al := "abc", Proof := false);
SetEchoInput(ei);
