voidStructureWeb & Application
void setup() {
size(200, 200);
}
void loop() {
line(10, 100, 190, 100);
}
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 the function returns nothing.
void function {
statements
}
any function that is being defined or implementedany valid statements1.0KeywordPDE