Forward

From Lazarus wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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;
   ...