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

Function

From FenixWiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 10:58, 26 March 2007 (edit)
FCR (Talk | contribs)
(Example)
← Previous diff
Revision as of 10:58, 26 March 2007 (edit) (undo)
FCR (Talk | contribs)
(Example)
Next diff →
Line 20: Line 20:
*receives [[parameters]] *receives [[parameters]]
*acts on the [[parameters]] *acts on the [[parameters]]
-*It [[|return|returns]] a value+*[[return|returns]] a value

Revision as of 10:58, 26 March 2007

Definition

A function is a subroutine to which one or more of the following apply:

A function does not create a new thread, and therefore the process which called the function waits until the function is completed before continuing executing its code.

As opposed to a process, a function doesn't have a frame; statement. See process for more information.

Example

int addInts( int a , int b )
Begin
    return a+b;
End

addInts(3,6); will return 9. One can see that the function does indeed:

Personal tools