Jump to content

String concatenation: Difference between revisions

Tag: Made through Tor
Line 1,685:
"The cat sat on the mat."
</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}}==
57

edits

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