String concatenation: Difference between revisions

Content added Content deleted
Tag: Made through Tor
Line 1,685: Line 1,685:
"The cat sat on the mat."
"The cat sat on the mat."
</pre>
</pre>

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

"Hello" " world" chain print nl

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


=={{header|PHL}}==
=={{header|PHL}}==