String interpolation (included): Difference between revisions

APL example
m (→‎{{header|11l}}: f-strings)
(APL example)
Line 625:
insert abcdef
</pre>
 
=={{header|APL}}==
<lang apl>
s ← 'Mary had a _ lamb' ⋄ s[s⍳'_'] ← ⊂'little' ⋄ s ← ∊s
s
Mary had a little lamb
</lang>
 
=={{header|Arturo}}==
67

edits