SecondBASIC Documentation v3
Home
/
Function Reference
/
Str$()
Str$()
Description:
Converts a non-string expression into a string.
Syntax:
Str$(<expression>)
Part
Description
<expression>
Required. The expression to convert to a string.
Example:
a = 50
b$ = Str$(a)
Print b$