String interpolation (included): Difference between revisions

String interpolation (included) in Asymptote
(String interpolation (included) in Yabasic)
(String interpolation (included) in Asymptote)
Line 657:
 
<pre>Mary had a little lamb.</pre>
 
=={{header|Asymptote}}==
<lang Asymptote>string s1 = "big";
write("Mary had a " + s1 + " lamb");
s1 = "little";
write("Mary also had a ", s1, "lamb");</lang>
 
=={{header|AutoHotkey}}==
2,136

edits