Rebol Programming/to-hex

USAGE:

edit
TO-HEX value 

DESCRIPTION:

edit

Converts an integer to a hex issue!.

TO-HEX is a native value.

ARGUMENTS

edit
  • value -- Value to be converted (Type: integer)

SOURCE CODE

edit
to-hex: native[
    "Converts an integer to a hex issue!." 
    value [integer!] "Value to be converted"
]