String interpolation (included): Difference between revisions

Content deleted Content added
Alextretyak (talk | contribs)
Russtopia (talk | contribs)
APL example
Line 625: Line 625:
insert abcdef
insert abcdef
</pre>
</pre>

=={{header|APL}}==
<lang apl>
s ← 'Mary had a _ lamb' ⋄ s[s⍳'_'] ← ⊂'little' ⋄ s ← ∊s
s
Mary had a little lamb
</lang>


=={{header|Arturo}}==
=={{header|Arturo}}==