Rebol Programming/to-hex

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

TO-HEX value 

DESCRIPTION:[edit | edit source]

Converts an integer to a hex issue!.

TO-HEX is a native value.

ARGUMENTS[edit | edit source]

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

SOURCE CODE[edit | edit source]

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