String interpolation (included): Difference between revisions

Added XPL0 example.
(String interpolation (included) in various BASIC dialents)
(Added XPL0 example.)
Line 2,083:
Mary had a little lamb
</pre>
 
=={{header|XPL0}}==
<lang XPL0>char X;
[X:= "little";
Text(0, "Mary had a "); Text(0, X); Text(0, " lamb.");
]</lang>
 
=={{header|zkl}}==
772

edits