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:

  • Can also be called as nas_round

If the argument is string as number, 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: "-10"

  • running: ("round" "10.5") will give: "10"

  • running: ("round" 10) will return nothing