×
Menu
Index

HEX Subroutine

 
Usage:
s = HEX(n)
 
Description:
The HEX subroutine returns a string hexadecimal representation of the number n.
 
Example:
sub main()
   // Print F
   printl(HEX(15))
end sub