Tagged Questions

7
votes
4answers
269 views

How to use pure in D 2.0

While playing around with D 2.0 I found the following problem: Example 1: pure string[] run1() { string[] msg; msg ~= "Test"; msg ~= "this."; return msg; } This com …