String append: Difference between revisions

Content added Content deleted
(jq (header))
Line 127: Line 127:
2> S ++ " world".
2> S ++ " world".
"Hello world"
"Hello world"
</pre>


=={{header|Euphoria}}==
<lang euphoria>
sequence string = "String"

printf(1,"%s\n",{string})

string &= " is now longer\n"

printf(1,"%s",{string})
</lang>
{{out}}
<pre>
String
String is now longer
</pre>
</pre>