Am Thursday 22 December 2011 21:33:13 schrieb Timothy Groves:
> Can anyone think of a situation in which you would *have* to use forward
> declared functions?  I'm trying to come up with an example for such for
> my book, and I am drawing a blank.
> _______________________________________________
> fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
> http://lists.freepascal.org/mailman/listinfo/fpc-pascal


procedure fwproc; forward;

procedure myprocedure;
begin
 fwproc;
end;

procedure fwproc;
begin

end;
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to