RosettaCodeData/Task/String-append/M2000-Interpreter/string-append.m2000
2023-07-01 13:44:08 -04:00

12 lines
97 B
Text

a="ok"
a+="(one)"
Print a
a$="ok"
a$+="(one)"
Print a$
Document b$
b$="ok"
b$="(one)"
Print b$