Problems with the DMD Mono-D Compiler

With features such as Code Completion and simple refactoring, writing D to Mono-D is almost as productive as writing C # to Visual Studios. Everything works fine on Linux, just install Mono Develop, add the Mono-D repository and create; but on Windows I can't even compile Hello World.

At first, it seems that DMD cannot find Phobos, but after following the instructions on the Getting Started page , I get 21 errors in the Object.di file. Errors such as "found" char 'while waiting for') '" and " no identifier for immutable declarator .

I am using Mono Develop 2.8.5 on Windows 7 64bit.

Does anyone know how I can do this?

+5
source share
1 answer

My mistake. It looks like DMD was not installed correctly. I uninstalled DMD and then installed it again (without D1), and now everything works.

+4
source

All Articles