Basic installation
Install D language stuff:
brew install dmd
brew install dub
Install Xamarin Studio — http://xamarin.com/download
Install Mono-D for Xamarin Studio to get auto completion, build etc.,. If you are familiar with eclipse’s way of adding features via plugins, this will be very familiar.
Download essential D sources
I strongly recommend that you checkout the following libraries and add their paths in the “includes” tab. See “Setup Mono-D, step 4” of Mono-D document.
git clone [email protected]:D-Programming-Language/dmd.git
git clone [email protected]:D-Programming-Language/druntime.git
git clone [email protected]:D-Programming-Language/phobos.git
Set D compiler toolchain
Set D includes
Set dub option
Additional tools
- dfmt is a formatter for D
source code, similar to
gofmt
.
References
- Programming in D — free online book.
- The D programming langauge by Andrei Alexandrescu.
See also: Using Sublime Text 3 for D programming