We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d7c16e commit afdd042Copy full SHA for afdd042
1 file changed
docs/library/hex.md
@@ -4,9 +4,9 @@
4
5
6
```basic
7
-string32 = hex(n32)
8
-string16 = hex(n16)
9
-string8 = hex(n8)
+A$ = hex(n32)
+B$ = hex(n16)
+C$ = hex(n8)
10
```
11
Where `n32` is a 32-bit ULONG, `n16` is a 16-bit UINTEGER and `n8` is an 8-bit UBYTE.
12
@@ -27,5 +27,11 @@ HEX, HEX16 and HEX8 can be included with the following command:
27
#include <hex.bas>
28
29
30
+## Remarks
31
+
32
+* This function is not available in Sinclair BASIC.
33
+* Avoid recursive / multiple inclusion when calling this function.
34
+* HEX16 ad HEX8 both call HEX to perform conversion, but differ in the size of the string they return.
35
36
## See also
37
0 commit comments