String append: Difference between revisions

(GDScript)
Line 1,151:
 
=={{header|M2000 Interpreter}}==
Documents in M2000 are objects with paragraphs. From Version 12 we can use variable names for strings without suffix $, although a and a$ are different variable names.
 
<syntaxhighlight lang="m2000 interpreter">
a="ok"
a+="(one)"
Print a
 
a$="ok"
a$+="(one)"
404

edits