Function example

From Bennu Wiki
Revision as of 15:31, 12 September 2007 by Sandman (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Category:functions

Definition

INT example_function ( <INT example_int> , <WORD example_word> , [<STRING example_string>] )

Does something.

Here goes a more detailed story about the function.

Parameters

INT example_int - Something about this int.
WORD example_word - Something about this word.
[STRING example_string] - Something about this optional string.

Returns

INT : Some int.

Errors

List all errors which could be thrown by use of this function.

Notes

Here are some notes, which explains some parts in more depth.

Example

Program example;
Begin
    Repeat
        frame;
    Until(key(_ESC))
End

Used in example: