- This wiki is out of date, use the continuation of this wiki instead
Private
From FenixWiki
(Difference between revisions)
| Revision as of 00:23, 9 May 2007 (edit) Sandman (Talk | contribs) ← Previous diff |
Current revision (13:29, 24 July 2007) (edit) (undo) Sandman (Talk | contribs) m |
||
| (One intermediate revision not shown.) | |||
| Line 1: | Line 1: | ||
| [[category:reserved]] | [[category:reserved]] | ||
| [[category:language]] | [[category:language]] | ||
| + | [[category:basic statement]] | ||
| + | |||
| + | [[Basic statements|'''Up to Basic Statements''']] | ||
| + | ---- | ||
| + | |||
| == Definition == | == Definition == | ||
| Line 7: | Line 12: | ||
| ['''End'''] | ['''End'''] | ||
| - | Private is a reserved word used to initiate the declaration of [[private | + | Private is a reserved word used to initiate the declaration of [[private variable]]s. 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]]. |
| == Example == | == Example == | ||
Current revision
[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
