Jump to content

String concatenation: Difference between revisions

no edit summary
(GDScript)
No edit summary
Line 804:
Hello
Hello literal
</pre>
 
=={{header|EMal}}==
<syntaxhighlight lang="emal">
text s = "hello"
write(s)
writeLine(" literal")
text s2 = s + " literal"
writeLine(s2)
</syntaxhighlight>
{{out}}
<pre>
hello literal
hello literal
</pre>
 
224

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.