2 /* Written by Walter Bright
4 * Placed into Public Domain
9 // Identify the compiler used and its various features.
13 // Vendor specific string naming the compiler
14 char[] name = "Digital Mars D";
16 // Master list of D compiler vendors
22 // Which vendor we are
23 Vendor vendor = Vendor.DigitalMars;
26 // The vendor specific version number, as in
27 // version_major.version_minor
28 uint version_major = 0;
29 uint version_minor = 0;
32 // The version of the D Programming Language Specification
33 // Supported by the compiler