"Source: Text/System/Func.text";
"Line: 489";
"Date: Thu Sep 25 14:47:43 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/System/Func.text, line: 489
// Example: H2E5 ()
print "Example: H2E5";
ei := GetEchoInput();
SetEchoInput(true);
procedure CheckPythagoras(x, y, z, ~h)
    if x^2+y^2 eq z^2 then
        h := true;
    else
        h := false;
    end if;
end procedure;
for x, y, z in { 1..15 } do
    CheckPythagoras(x, y, z, ~h);
    if h then
      "Yes, Pythagorean triple!", x, y, z;
    end if;
end for;
SetEchoInput(ei);
