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