%Trunc function


Function
The function modifies real parameter (its decimal part) to real number.
Declaration
REAL %Trunc(
   REAL in number
 )

Parameters
number Function argument.

Example
 REAL _A
 
 _A := %Trunc(15.237123)
 
 ; (_A is 15)