Introduction

Understand conditional compilation and the features of D that are specifically for conditional compilation.

We'll cover the following...

Conditional compilation

Conditional compilation is for compiling parts of programs in special ways depending on certain compile time conditions. Sometimes, entire sections of a program may need to be taken out and not compiled at all.

Conditional compilation ...