You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
void drawCircle() { // This function also does not return a value
ellipse(30, 30, 50, 50);
}
]]></code>
</example>
<description><![CDATA[
Keyword used indicate that a function returns no value. Each function must either return a value of a specific datatype or use the keyword <b>void</b> to specify it returns nothing.
]]></description>
<syntax>
void <c>function</c> {
<c>statements</c>
}
</syntax>
<parameter>
<label>function</label>
<description><![CDATA[any function that is being defined or implemented]]></description>