The basic string expression may be either a constant
or a variable, and concatenation (&) is supported. Using the
concatenation operator (&) adds the second string to the first
string.
<A$> & <B$>
Example
This is an example of how to use the STRING CONCATENATION (&) command:
10 LET A$= "ZBI-"
20 LET B$= "Programming"
30 LET C$= A$ & B$
40 PRINT C$
RUN
ZBI-Programming