function/STR$ function/STR$ NAME STR$ -- Converts number into a string ABBREVIATION st <shift> R SYNOPSIS STR$(<number>) FUNCTION This function converts a decimal number into a string. INPUTS <number> - number to be converted RESULT A string corresponding a given numeric value (string). EXAMPLES 10 A=10.5 20 PRINT A 30 A$=STR$(A) 40 PRINT A$ 10.5 10.5 NOTES None BUGS None SEE ALSO DEC() HEX$() VAL()