RosettaCodeData/Task/String-concatenation/ERRE/string-concatenation.erre

7 lines
114 B
Plaintext

..........
S$="HELLO"
PRINT(S$;" LITERAL") ! or S$+" LITERAL"
S2$=S$+" LITERAL"
PRINT(S2$)
..........