floor: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) No edit summary |
Verisimilar (talk | contribs) m (Macros:Functions:floor moved to floor) |
(No difference)
|
Revision as of 02:32, 7 March 2009
floor() Function
Returns the number padded in if it is an integer, otherwise the number is rounded down to the nearest smaller integer and that value is returned.
Usage
[h: result = floor(num)]
Examples
[r: floor(2)]
Returns 2.
[r: floor(1.2)]
Returns 1.
[r: floor(-1.2)]