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

Difference between revisions of "void"

From Quake Wiki

 
m (Move page script moved page Void to void: Fixing the case)
 
(No difference)

Latest revision as of 16:22, 29 March 2013

Void type[edit]

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

Example:

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