String append: Difference between revisions

Content added Content deleted
(FutureBasic example added)
Line 172: Line 172:
<pre>
<pre>
123456789!
123456789!
</pre>

=={{header|Amazing Hopper}}==
<syntaxhighlight lang="c">
#include <jambo.h>

Main
r="un corderito", s="María tenía", t="felpudo"
Multicat ( s," ",r," ",t ),Get utf8, and print it
d=0
Let ' d := Utf8( Cat( Cat ( s, " un " ), t ) )'
Printnl ( "\n",d )
End
</syntaxhighlight>
{{out}}
<pre>
María tenía un corderito felpudo
María tenía un felpudo
</pre>
</pre>