String append: Difference between revisions

Content added Content deleted
Line 1,303: Line 1,303:
"this string is now longer"
"this string is now longer"
</pre>
</pre>

=={{header|Picat}}==
<lang Picat>main =>
S = "a string",
S := S + " that is longer",
println(S).</lang>

{{out}}
<pre>a string that is longer</pre>



=={{header|PicoLisp}}==
=={{header|PicoLisp}}==