RosettaCodeData/Task/String-append/M2000-Interpreter/string-append.m2000

15 lines
147 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a="ok"
a+="(one)"
Print a
a$="ok"
a$+="(one)"
Print a$
Document b$
2026-04-30 12:34:36 -04:00
b$="1234"
Clear b$ ' use Clear to empty document
2023-07-01 11:58:00 -04:00
b$="ok"
b$="(one)"
Print b$