mirror of
https://github.com/processing/processing4.git
synced 2026-02-12 18:10:43 +01:00
64 lines
936 B
XML
64 lines
936 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<root>
|
|
<name>< (less than)</name>
|
|
|
|
<category>Control</category>
|
|
|
|
<subcategory>Relational Operators</subcategory>
|
|
|
|
<usage>Web & Application</usage>
|
|
|
|
<example>
|
|
<image></image>
|
|
<code>
|
|
int a = 22;
|
|
int b = 23;
|
|
if(a < b) {
|
|
println("variable a is less then variable b ");
|
|
}
|
|
</code>
|
|
</example>
|
|
|
|
<description>
|
|
Tests if the value on the left is smaller than the value on the right.
|
|
</description>
|
|
|
|
<syntax>
|
|
<c>value1</c> < <c>value2</c>
|
|
</syntax>
|
|
|
|
<parameter>
|
|
<label>value1</label>
|
|
<description>int or float</description>
|
|
</parameter>
|
|
|
|
<parameter>
|
|
<label>value2</label>
|
|
<description>int or float</description>
|
|
</parameter>
|
|
|
|
<returns></returns>
|
|
|
|
<related>
|
|
> (greater than)
|
|
>= (greater than or equal to)
|
|
<= (less than or equal to)
|
|
== (equality)
|
|
!= (inequality)
|
|
</related>
|
|
|
|
<availability>1.0</availability>
|
|
|
|
<type>Operator</type>
|
|
|
|
<partof>PDE</partof>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</root>
|