
STR$ is a string function that generates strings from numeric variables and constants. STR$ needs a single argument which is the value that should be converted.
The following example proves that 1+2=12 and not 3 ;)
outmode -2 let a = 1 let b = 2 let c$ = str$(a) + str$(b) print c$
+ is the strings concatenation operator.