String prepend: Difference between revisions

String prepend in Asymptote
(String prepend in various BASIC dialents (BASIC256, Run Basic, True BASIC and Yabasic))
(String prepend in Asymptote)
Line 326:
HelloWorld
HelloWorld</pre>
 
=={{header|Asymptote}}==
<lang Asymptote>string s1 = " World!";
write("Hello" + s1);
write("Hello", s1);
string s2 = "Hello" + s1;
write(s2);</lang>
 
=={{header|AutoHotkey}}==
2,130

edits