This wiki is out of date, use the continuation of this wiki instead

Const

From FenixWiki

Revision as of 13:30, 24 July 2007 by Sandman (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search

Up to Basic Statements



[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
Personal tools