String append: Difference between revisions

Content added Content deleted
(→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)")
Line 1,303: Line 1,303:
"this string is now longer"
"this string is now longer"
</pre>
</pre>

=={{header|Phixmonti}}==
<syntaxhighlight lang="Phixmonti">/# Rosetta Code problem: https://rosettacode.org/wiki/String_append
by Galileo, 11/2022 #/

"Hello" var s
s " world" chain var s
s print
</syntaxhighlight>
{{out}}
<pre>Hello world
=== Press any key to exit ===</pre>


=={{header|Picat}}==
=={{header|Picat}}==