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 compiles and works as …
7
votes
2answers
157 views
What debugger can be used with D 2.0 on windows and how do I use it?
I have been playing around with D 2.0 a bit today mostly because of the "The Case for D" in DDJ.
I have downloaded D 2.0 for windows but have not figured out how to step through a running program in …
1
vote
3answers
160 views
DMD 2 on Snow Leopard
Has anyone tried the Digitalmars D compiler (version 2) on Snow Leopard? I'd like to upgrade but I'd rather have a working D compiler.
