forked from Galleondragon/qb64
-
Notifications
You must be signed in to change notification settings - Fork 24
_MK$
Cory Smith edited this page Sep 2, 2022
·
5 revisions
The _MK$ function can convert any numerical type into an ASCII STRING value that can be converted back using _CV.
string_value$ = _MK$(numericalType, numericalValue)
- numericalType is any QB64 numerical type: INTEGER, LONG, SINGLE, DOUBLE, _INTEGER64, _BYTE and _OFFSET.
- Whole integer values can be signed or _UNSIGNED.
- numericalValue must match the numericalType used.
- Supports converting any QBasic or QB64 numerical value into a string value.
- Some resulting ASCII string characters might not be able to be printed to the screen.