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

round function:

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

Examples:

  • running: (round 10.3) will give: 10

  • running: (round -10.3) will give: -10

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

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

  • running: (round 10.5) will give: 11

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