String append: Difference between revisions

Content added Content deleted
(String append in various BASIC dialents (BASIC256, QBasic, Liberty BASIC, Run Basic, True BASIC and Yabasic))
(String append in Asymptote)
Line 313: Line 313:
HelloWorld
HelloWorld
HelloWorld</pre>
HelloWorld</pre>

=={{header|Asymptote}}==
<lang Asymptote>string s = "Hello";
s = s + " Wo";
s += "rld!";
write(s);</lang>


=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==