Getting Started With LDC troubles.

Taylor Hillegeist via digitalmars-d-ldc digitalmars-d-ldc at puremagic.com
Tue Jan 27 20:56:31 PST 2015


So That did the trick! Steps to take:

Install Visual Studio Express 2013 for windows Desktop
Get LDC2 MSVC
add LDC\Bin to the path
Under the Visual Studio Tools folder on the start menu open
VS2013 x64 Cross Tools Command Prompt
LDC2 HelloWorld.d

And bingo

I used
------------------------------HelloWorld.d
import std.stdio;
int main()
{
     writefln("Hello LDC2");
     return 0;
}
-------------------------------

Thanks Everybody!




More information about the digitalmars-d-ldc mailing list