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