Copy a string: Difference between revisions

Content added Content deleted
(Copy a string in various BASIC dialents)
(Copy a string en Asymptote)
Line 432: Line 432:
HelloWorld
HelloWorld
Hello</pre>
Hello</pre>

=={{header|Asymptote}}==
<lang Asymptote>string src, dst;
src = "Hello";
dst = src;
src = " world...";
write(dst, src);</lang>


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