String append: Difference between revisions

Content added Content deleted
(Added Mathematica)
Line 279: Line 279:


=={{header|PicoLisp}}==
=={{header|PicoLisp}}==
<lang picolisp>
<lang picolisp>(setq Str1 "12345678")
(setq Str1 "12345678")
(setq Str1 (pack Str1 "9!"))
(setq Str1 (pack Str1 "9!"))
(println Str1)
(println Str1)</lang>
</lang>
{{out}}
{{out}}
<pre>"123456789!"</pre>
<pre>"123456789!"</pre>