Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

floor function:

If the argument is numeric, return it's floor.

Examples:

  • running: (floor 10.3) will give: 10

  • running: (floor -10.3) will give: -11

  • running: (floor -10) will give: -10

  • running: (floor -10.5) will give: -11

  • running: (floor 10.99) will give: 10

  • running: (floor [0]) will return nothing