Make an copy of a string in unmanaged memory
auto str = "hello".dup; auto c = copy(str); assert(c == str); Delete(c);
See Implementation
Make an copy of a string in unmanaged memory