String interpolation (included): Difference between revisions

Content deleted Content added
Langurmonkey (talk | contribs)
Chunes (talk | contribs)
Add Uiua
Line 2,247:
Mary had a X lamb.
Mary had a little lamb.
</pre>
 
=={{header|Uiua}}==
{{works with|Uiua|0.11.1}}
[https://www.uiua.org/tutorial/functions#format-strings Format strings documentation]
<syntaxhighlight lang="uiua">
$"Mary had a _ lamb." "little"
</syntaxhighlight>
{{out}}
<pre>
"Mary had a little lamb."
</pre>