calc.fract
Returns the fractional part of a number.
If the number is an integer, it returns 0
.
Example
#assert(calc.fract(3) == 0)
#calc.fract(-3.1)

ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters are the inputs to a function. They are specified in parentheses after the function name.
value
The number to truncate.