INT_TO_HEX_STR(A)
Converts a integer to hexadecimal string
String INT_TO_HEX_STR(Integer A)
A - Integer value
Hexadecimal string of A
> 10 i = 123
> 20 i = i + 1
> 30 PRINT INT_TO_HEX_STR(i)
> 40 GOTO 20
> RUN
0x0000007C
0x0000007D
0x0000007E
0x0000007F
0x00000080
...