Jump to content

String concatenation: Difference between revisions

PascalABC.NET
(Add Ecstasy example)
(PascalABC.NET)
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}}==
222

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.