The \ operator divides two numbers and returns an integer (fix-point). The answer is rounded off.
Code: <% result = 25 \ 4 %>
Output: 6
Code: <% result = 25.12345 \ 4.043 %>
Code: <% result = 25.12345 \ 4 %>