-
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathfalse.xml
More file actions
executable file
·44 lines (31 loc) · 751 Bytes
/
false.xml
File metadata and controls
executable file
·44 lines (31 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?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><![CDATA[
rect(30, 20, 50, 50);
boolean b = false;
if (b == false) {
line(20, 10, 90, 80); // This line is drawn
} else {
line(20, 80, 90, 10); // This line is not drawn
}
]]></code>
</example>
<description><![CDATA[
Reserved word representing the logical value "false". Only variables of type <b>boolean</b> may be assigned the value <b>false</b>.
]]></description>
<syntax></syntax>
<returns></returns>
<related>
true
boolean
</related>
<availability>1.0</availability>
<type>Keyword</type>
<partof>PDE</partof>
</root>