mirror of
https://github.com/processing/processing4.git
synced 2026-02-12 10:00:42 +01:00
57 lines
873 B
XML
57 lines
873 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<root>
|
|
<name>false</name>
|
|
|
|
<category>Structure</category>
|
|
|
|
<subcategory></subcategory>
|
|
|
|
<usage>Web & Application</usage>
|
|
|
|
<example>
|
|
<image></image>
|
|
<code>
|
|
rect(30, 20, 50, 50);
|
|
boolean b = false;
|
|
if(b == false) {
|
|
line(20, 10, 90, 80); // This line draws
|
|
} else {
|
|
line(20, 80, 90, 10);
|
|
}
|
|
</code>
|
|
</example>
|
|
|
|
<description>
|
|
Reserved word representing the logical value "false". Only variables of type <b>boolean</b> may be assigned the value <b>false</b>
|
|
</description>
|
|
|
|
<syntax>
|
|
false
|
|
</syntax>
|
|
|
|
<parameter>
|
|
<label></label>
|
|
<description></description>
|
|
</parameter>
|
|
|
|
<parameter>
|
|
<label>statements</label>
|
|
<description>any valid statements</description>
|
|
</parameter>
|
|
|
|
<returns></returns>
|
|
|
|
<related>
|
|
true
|
|
boolean
|
|
</related>
|
|
|
|
<availability>1.0</availability>
|
|
|
|
<type>Keyword</type>
|
|
|
|
<partof>PDE</partof>
|
|
|
|
|
|
</root>
|