OPERATOR:   /

Implemented in version 1.0
 
/
 
The / operator divides two numbers and returns a floating-point number.
 
Code:
<% result = 25.0 / 4.975 %>
 
Output:
5.0251256281407
 
Code:
<% result = 25 / 5 %>
 
Output:
5