Rebol Programming/to-hex
USAGE:
TO-HEX value
DESCRIPTION:
Converts an integer to a hex issue!.
TO-HEX is a native value.
ARGUMENTS
- value -- Value to be converted (Type: integer)
SOURCE CODE
to-hex: native[
"Converts an integer to a hex issue!."
value [integer!] "Value to be converted"
]