Files
processing4/mobile/web/reference/API/greaterthan.xml
2005-01-27 06:48:42 +00:00

64 lines
931 B
XML

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>&gt; (greater than)</name>
<category>Control</category>
<subcategory>Relational Operators</subcategory>
<usage>Web &amp; Application</usage>
<example>
<image></image>
<code>
int a = 5;
int b = 13;
if(b &gt; a) {
println("variable b is larger the variable a");
}
</code>
</example>
<description>
Tests if the value on the left is larger 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>
&lt; (less than)
&gt;= (greater than or equal to)
&lt;= (less than or equal to)
== (equality)
!= (inequality)
</related>
<availability>1.0</availability>
<type>Operator</type>
<partof>PDE</partof>
</root>