a port of the Processing Visualization Language
Name

void

Examples
void setup() {

  size(200, 200);

}



void draw() {

  line(10, 100, 190, 100);

}
Description Keyword used indicate a function returns no value. Each function must either return a value of a specific datatype or use the keyword void to specify it returns nothing.
Syntax
void function {

  statements

}
Parameters
function any function that is being defined or implemented
statements any valid statements
Usage Web & Application

This reference is licensed under the CC BY-NC-SA 2.0 license:

Creative Commons License
Fork me on GitHub