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.

Pascal User Manual and Report says:

    Procecure (function) identifiers may be used be-
    fore  the  procedure  (funtion)  declaration  if
    there is a forward declaration.  Forward  decla-
    rations  are  necessary to allow mutually recur-
    sive procedures and functions that are not nest-
    ed.  The form is as follows:

        procedure Q(X:T); Forward;
        procedure P(Y:T);
        begin
          Q(A)
        end;

        procedure Q;
          { parameters and result types are not repeated }
        begin
          P(B)
        end;

But  are  "mutually  recursive  procedures and func-
tions" necessary?

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

Reply via email to