Copy a string: Difference between revisions

Content deleted Content added
Jjuanhdez (talk | contribs)
Copy a string in various BASIC dialents
Jjuanhdez (talk | contribs)
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}}==