Version: 1.0
The Mod operator divides two numbers and returns the remainder.
<% remainder = 26 Mod 5 %>
1
In this example, 5 divides into 26, 5 times, with a remainder of 1.
<% remainder = 26.1234 Mod 5.7176%>
2
Note that for floating-point numbers, the numbers to the right of the decimal are rounded to the nearest integer (i.e., in this example, 5.7176 is treated as 6 by Mod).