Copy a string: Difference between revisions

Content deleted Content added
No edit summary
Line 80:
==[[D]]==
[[Category:D]]
 
'''Compiler:''' [[DMD]],[[GDC]]
char[] src = "string";
char[] dest = src.dup;
 
==[[Erlang]]==