String interpolation (included): Difference between revisions

Content added Content deleted
(→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)")
Line 1,587: Line 1,587:
"Mary had a little lamb."
"Mary had a little lamb."
</pre>
</pre>

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

include ..\Utilitys.pmt

"big" var s

( "Mary had a " s " lamb" ) lprint nl

"little" var s

( "Mary had a " s " lamb" ) lprint
</syntaxhighlight>
{{out}}
<pre>Mary had a big lamb
Mary had a little lamb
=== Press any key to exit ===</pre>


=={{header|PHP}}==
=={{header|PHP}}==