Name
Int -- return integer part of a float (V1.5)
Synopsis
result = Int(val)
Function
This function returns the integer part of a floating point number.

Inputs
val
source value
Results
result
integer part of val
Example
a = Int(4.5)
This call returns 4.

Show TOC