1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/_MK$.md
2022-12-24 21:14:48 -06:00

1.1 KiB

The _MK$ function can convert any numerical type into an ASCII STRING value that can be converted back using _CV.

Syntax

string_value$ = _MK$(numericalType, numericalValue)

Parameter(s)

Description

  • 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.

See Also