"Source: Text/System/Prof.text";
"Line: 257";
"Date: Thu Sep 25 14:47:43 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/System/Prof.text, line: 257
// Example: H7E2 ()
print "Example: H7E2";
ei := GetEchoInput();
SetEchoInput(true);
function fibonacci(n)
    if n eq 1 or n eq 2 then
      return 1;
    else
      return fibonacci(n - 1) + fibonacci(n - 2);
    end if;
end function;

SetProfile(true);
assert fibonacci(27) eq Fibonacci(27);
SetProfile(false);
G := ProfileGraph();
ProfilePrintByTotalTime(G);
ProfilePrintChildrenByTime(G, 2);
SetEchoInput(ei);
