NAME
    int - return the integer part of value

SYNOPSIS
    int(x)

TYPES
    x		real

    return	real

DESCRIPTION
    Return the integer part of x.

EXAMPLE
    > print int(pi()), int(3.333), int(3.789), int(-3.333), int(-3.789)
    3 3 3 -3 -3

LIMITS
    none

LIBRARY
    NUMBER *qint(NUMBER *x)

SEE ALSO
    ceil, floor
