RosettaCodeData/Task/Copy-a-string/D/copy-a-string.d

13 lines
245 B
D
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
void main() {
string src = "This is a string";
// copy contents:
auto dest1 = src.idup;
// copy contents to mutable char array
auto dest2 = src.dup;
// copy just the fat reference of the string
auto dest3 = src;
}