String append: Difference between revisions

m
imported>Arakov
(2 intermediate revisions by 2 users not shown)
Line 509:
print a$</syntaxhighlight>
 
 
=={{header|Binary Lambda Calculus}}==
BLC program
<pre>18 16 46 80 05 bc bc fd f6 e0 69 6f 6e</pre>
based on https://github.com/tromp/AIT/blob/master/rosetta/catstrings.lam
appends "ion" to "on" to output "onion".
 
=={{header|BQN}}==
Line 1,899 ⟶ 1,905:
 
=={{header|Wren}}==
<syntaxhighlight lang="javascriptwren">var s = "Hello, "
s = s + "world!"
System.print(s)</syntaxhighlight>
56

edits