forked from jdf/processing-py-site
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFalse.xml
More file actions
40 lines (27 loc) · 738 Bytes
/
False.xml
File metadata and controls
40 lines (27 loc) · 738 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>False</name>
<category>Structure</category>
<subcategory></subcategory>
<usage>Web & Application</usage>
<example>
<image />
<code><![CDATA[
rect(30, 20, 50, 50)
b = False
if not b: # If b is 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>
<returns></returns>
<related>True</related>
<related>Boolean</related>
<availability>1.0</availability>
<type>Keyword</type>
<partof>PYDE</partof>
</root>