RosettaCodeData/Task/String-append/M2000-Interpreter/string-append.m2000
2026-04-30 12:34:36 -04:00

14 lines
147 B
Text

a="ok"
a+="(one)"
Print a
a$="ok"
a$+="(one)"
Print a$
Document b$
b$="1234"
Clear b$ ' use Clear to empty document
b$="ok"
b$="(one)"
Print b$