STR$
Format: STR$ (X)
Supported by: COMX BASIC V1.00, Pecom 32 BASIC, Pecom 64 BASIC 1.0 and 4.0, Telmac SBASIC v 24.3
Similar commands: -
This command converts the value of X to a string, X can be an integer or floating point value, some examples:
10 A=7.89 20 B=10 30 A$ = STR$ (A) 40 B$ = STR$ (B)
In this example A$ will get the value '7.89' and B$ will be '10'.