String concatenation: Difference between revisions

Add Uiua
(Add Ecstasy example)
(Add Uiua)
 
(One intermediate revision by one other user not shown)
Line 1,835:
writeln(s1);
End.</syntaxhighlight>
 
=={{header|PascalABC.NET}}==
<syntaxhighlight lang="delphi">
##
var s := 'Pascal';
s := s + 'ABC' + '.NET';
Print(s);
</syntaxhighlight>
{{out}}
<pre>
PascalABC.NET
</pre>
 
 
=={{header|Perl}}==
Line 2,487 ⟶ 2,500:
 
0 OK, 0:61</pre>
 
=={{header|Uiua}}==
{{works with|Uiua|0.11.1}}
<syntaxhighlight lang="uiua">
A ← "Hello "
B ← ⊂ A "world"
B
</syntaxhighlight>
{{out}}
<pre>
"Hello world"
</pre>
 
=={{header|UNIX Shell}}==
1,827

edits