Function

From the Fallout3 GECK Wiki
Revision as of 13:31, 11 August 2014 by imported>Odessa (syntax in example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

General[edit | edit source]

In computing, a function is a procedure to perform some task. For general information, see the wikipedia article.

For available functions in Fallout 3/New Vegas, see the category.

Block Type[edit | edit source]

In scripting, the keyword Function is also a block type used only by user defined function scripts. Example:

scn MyUDFScript

Begin Function { optional-parameters.. }

   ; script body

End