- This wiki is out of date, use the continuation of this wiki instead
Const
From FenixWiki
[edit] Definition
Const
[<constants>]
[End]
Const is a reserved word used to initiate the declaration of constants. Terminating the declaration block with an End is needed when the Const statement is not used in conjunction with the main code of the Program.
For a list of constants, see this page.
[edit] Example
Program example; // Name this program "example", which doesn't really matter Const // Declare constants here Begin Loop frame; End End Const // Declare constants here End