Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

void

From Quake Wiki

Revision as of 16:22, 29 March 2013 by Move page script (talk) (Move page script moved page Void to void: Fixing the case)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Void type[edit]

Void is the type for the result of a function that produces no direct result.

Example:

 void helloWorld() {
    print("hello world");
 }