String append: Difference between revisions

(jq (header))
Line 127:
2> S ++ " 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>
 
Anonymous user