Rebol Programming/abs

USAGE:

edit
ABS value 

DESCRIPTION:

edit

Returns the absolute value.

ABS is an action value.

ARGUMENTS

edit
  • value -- (Type: number pair money time)

SOURCE CODE

edit
abs: native[
    "Returns the absolute value." 
    value [number! pair! money! time!]
]