"Source: Text/System/Func.text";
"Line: 270";
"Date: Thu Sep 25 14:47:43 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/System/Func.text, line: 270
// Example: H2E3 ()
print "Example: H2E3";
ei := GetEchoInput();
SetEchoInput(true);
f := function(x)
   if IsOdd(x) then
       return true, x;
   else
       return false, _;
   end if;
end function;
f(1);
f(2);
a, b := f(1);
b;
a, b := f(2);
SetEchoInput(ei);
