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

Private

From FenixWiki

Revision as of 13:29, 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

Private
<private variables>;
[End]

Private is a reserved word used to initiate the declaration of private variables. Terminating the declaration block with an End is not necessary, but is possible. Parameters of a function or process will be considered a private variable with the initiated value of the passed argument.

[edit] Example

Process My_Process();
Public
Private // Declare private variables here
Begin
    Loop
        frame;
    End
End
Personal tools