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

abs function:

If the argument is numeric, return it's absolute value.

Examples:

  • running: (abs 100) will give: 100

  • running: (abs -100) will give: 100

  • running: (abs 0) will give: 0

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