The cat command (see Section 5.2.12) can also be used to transform a real number into a string, as can + (see Section 5.2.13).
If cat has a real number as an argument, the result will be a string.
| cat(123) | 
| 
 | 
Similarly, if you add a real number to an empty string, the result will be a string.
| ""+123 | 
| 
 |