Forward
From Lazarus wiki
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;
...