Jump to content

String append: Difference between revisions

Added Mathematica
(Added Mathematica)
Line 194:
{{out}}
<pre>Hello, World!</pre>
 
=={{header|Mathematica}}==
<lang Mathematica>
(* mutable strings are not supported *)
s1 = "testing";
s1 = s1 <> " 123";
s1</lang>
{{out}}
<pre>"testing 123"</pre>
 
=={{header|NetRexx}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.