Implements the floor function. Returns the greatest integer less than or equal to its argument.

Format: Floor(exprn)

Arguments:

Return type: int

Error conditions: Returns 'Bottom' if exprn evaluates to 'Bottom'.

Example:

value = floor(5.5)
; Sets value to 5.
value = floor(-2)
; Sets value to -2.