<<
Index
>>
FutureBasic 5
frac
function
Syntax:
fractionValue#
=
frac
(
expr
)
Description:
This function returns the fractional portion of the floating-point expression given by
expr
. If
expr
is negative, then the value returned by
frac
will also be negative.
Example:
print
frac
(78245.1096)
program output:
0.1096
See Also:
fix
;
int