Void keyword

From Dragon Age Toolset Wiki
Revision as of 21:14, 29 July 2009 by BryanDerksen (Talk | contribs) (Created page with 'The '''void''' "data type" is actually not a data type at all, but rather the absence of one. A function that does not return any value after executing will be denoted as having...')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The void "data type" is actually not a data type at all, but rather the absence of one.

A function that does not return any value after executing will be denoted as having a "void" return type.

You can't define a variable of void type.