Fix Function [Runtime]/text/sbasic/shared/03080501.xhpSun Microsystems, Inc.converted from old format - fpeFix functionFix Function [Runtime]Returns the integer value of a numeric expression by removing the fractional part of the number.Syntax:Fix (Expression)Return value:DoubleParameters:Expression: Numeric expression that you want to return the integer value for.Example:sub ExampleFixPrint Fix(3.14159) REM returns 3.Print Fix(0) REM returns 0.Print Fix(-3.14159) REM returns -3.end sub