Decrement variable
Anatomy
<math:dec var="var">
int
</math:dec>
Description: MATH:DEC decrements the value of a variable.
Attributes
| Name | Type | Description | Defined By |
|---|---|---|---|
| var | var | Variable name | math:dec |
Results:
| Binding | Type | Predicate |
|---|---|---|
| var | int | N/A |
Examples
Example
<set var="number">2</set>
<math:dec var="number"/>
<output>$number</output>
<!-- 1 -->