The difference between fix and int is that fix does not return the next lower number when NumExpr is negative.
print int(234.523) print int(-82.34) v = int(2.345) print vproduces
234 -83 2
from The Basmark QuickBASIC Programmer’s Manual by Lawrence Leinweber