- This wiki is out of date, use the continuation of this wiki instead
Parameter
From FenixWiki
(Difference between revisions)
Revision as of 13:56, 29 April 2007 (edit) Sandman (Talk | contribs) m ← Previous diff |
Revision as of 14:03, 29 April 2007 (edit) (undo) Sandman (Talk | contribs) m Next diff → |
||
Line 12: | Line 12: | ||
Process my_proc( int parameter ) | Process my_proc( int parameter ) | ||
Begin | Begin | ||
- | + | //statements | |
End | End | ||
</pre> | </pre> | ||
[[Category:General]] | [[Category:General]] |
Revision as of 14:03, 29 April 2007
Definition
A parameter is the value inside the definition of a function or a process that is received from the calling environment. The value passed on when calling the function or process is called an argument.
Example
Private int argument = 3; Begin my_proc( argument ); End Process my_proc( int parameter ) Begin //statements End