Avisaro Online Documentation - Wiki
Impressum Kontakt Sitemap

STR$

Description

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.

Example

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$

Remarks

+ is the strings concatenation operator.