Rebol Programming/abs

USAGE:

ABS value 

DESCRIPTION:

Returns the absolute value.

ABS is an action value.

ARGUMENTS

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

SOURCE CODE

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