- This wiki is out of date, use the continuation of this wiki instead
Public
From FenixWiki
[edit] Definition
Public
<public variables>;
[End]
Public is a reserved word used to initiate the declaration of public variables. Terminating the declaration block with an End is not necessary, but is possible.
[edit] Example
Process My_Process();
Public // Declare public variables here
Private
Begin
Loop
frame;
End
End
