Forward

From Lazarus wiki
Revision as of 05:24, 16 February 2020 by Trev (talk | contribs) (English translation of German page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Deutsch (de) English (en)


Back to Reserved words.


The modifier forward:

  • belongs to the programming of subroutines;
  • allows subroutines to be seen by other subroutines before they are declared in the code.


Example:

   ...
   function subTest(); forward;
   ...