5 lines
80 B
Text
5 lines
80 B
Text
A$ = "hello"
|
|
PRINT A$," World"
|
|
|
|
A2$ = A$ & " using & to concat World"
|
|
PRINT A2$
|