You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Subtracts one value from another and may also be used to negate a value. As a subtraction operator, the value of the second parameter is subtracted from the first. For example, 5 - 3 yields the number 2. As a negation operator, it is equivalent to multiplying a number by -1. For example, -5 is the same as 5 * -1.
]]></description>
<syntax>
-<c>value1</c>
<c>value1</c> - <c>value2</c>
</syntax>
<parameter>
<label>value1</label>
<description><![CDATA[int or float]]></description>
</parameter>
<parameter>
<label>value2</label>
<description><![CDATA[int or float]]></description>