Hello again.
I recall that with Turbo Pascal there was a compiler directive H+ that would allow an extended syntax for calling procedures that were called by other procedures ahead of the compile order. But {$H+} doesn't seem to work and I get a compiler error.
What am I doing wrong? (Windows 10, Lazarus 2.2.6, FPC 3.2.2) I am working with the Lazarus IDE, not FPC.
--------------------------------
For example,
Procedure A;
begin
call procedure B
end;
Procedure B;
begin
do something
end;