String interpolation (included): Difference between revisions

Added solution for Action!
m (added omits)
(Added solution for Action!)
Line 294:
.include "../includeARM64.inc"
</lang>
 
=={{header|Action!}}==
<lang Action!>PROC Main()
CHAR ARRAY extra="little"
 
PrintF("Mary had a %S lamb.%E",extra)
RETURN</lang>
{{out}}
[https://gitlab.com/amarok8bit/action-rosetta-code/-/raw/master/images/String_interpolation_(included).png Screenshot from Atari 8-bit computer]
<pre>
Mary had a little lamb.
</pre>
 
=={{header|Ada}}==
Anonymous user