Copy a string: Difference between revisions

Copy a string en Asymptote
(Copy a string in various BASIC dialents)
(Copy a string en Asymptote)
Line 432:
HelloWorld
Hello</pre>
 
=={{header|Asymptote}}==
<lang Asymptote>string src, dst;
src = "Hello";
dst = src;
src = " world...";
write(dst, src);</lang>
 
=={{header|AutoHotkey}}==
2,169

edits