import std.stdio, std.path; void main() { version(Windows){ writefln(join("d","dmd","src")); // d\dmd (d\dmd\src by rights) } version(Posix){ writefln(join("d","dmd","src")); // d/dmd/src } }
Created attachment 311 [details] fix std.path.join
This is very easily bug. I want to fix it next update.
Sorry, I missed this one. The fix is now in svn and will be in the next release.