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

Global

From FenixWiki

Jump to: navigation, search

Up to Basic Statements



[edit] Definition

Global
<global variables>;
[End]

Global is a reserved word used to initiate the declaration of global variables. Terminating the declaration block with an End is needed when the Global is not used in conjunction with the main code of the Program.

For a list of global variables, see this page.

[edit] Example

Global // Declare global variables here
End

Process Main()
Begin
    Loop
        frame;
    End
End

Global // Declare global variables here
End
Personal tools