April 19, 2017
I use Visual Studio 2015 with the latest versions of D installed, and when i try to compile a simple hello world code i get this error:
<code><pre>
------ Build started: Project: LearningD, Configuration: Debug Win32 ------
Building Win32\Debug\LearningD.exe...
Microsoft (R) Incremental Linker Version 14.00.24215.1
Copyright (C) Microsoft Corporation.  All rights reserved.

"Win32\Debug\LearningD.obj,Win32\Debug\LearningD.exe,Win32\Debug\LearningD.map,user32.lib+"
kernel32.lib/NOMAP/CO/NOI/DELEXE
LINK : fatal error LNK1181: cannot open input file 'Win32\Debug\LearningD.obj,Win32\Debug\LearningD.exe,Win32\Debug\LearningD.map,user32.lib+'
Building Win32\Debug\LearningD.exe failed!
Details saved as "file://C:\Users\crack\documents\visual%20studio%202015\Projects\LearningD\LearningD\Win32\Debug\LearningD.buildlog.html"
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
</pre></code>

Also the code i try to compile is:
<code></pre>
import std.stdio;

int main(string[] argv)
{
    writeln("Hello D-World!");
    return 0;
}

</pre></code>