String concatenation: Difference between revisions

Add ed example
(Add Uiua)
(Add ed example)
 
Line 822:
approach3=hello world
</pre>
 
=={{header|ed}}==
 
Join two strings as lines. That's it.
 
<syntaxhighlight lang="sed">
# by Artyom Bologov
a
Hello
World!
.
,jp
Q
</syntaxhighlight>
 
{{out}}
 
<pre>$ ed -s < concat.ed
HelloWorld!</pre>
 
=={{header|Ela}}==
104

edits