aboutsummaryrefslogtreecommitdiffhomepage
path: root/views/version.txt
blob: f9a8560f2eafc6d5e37a363ec72d55dacc1deef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/+ obt - org generated file +/
struct Version {
  int major;
  int minor;
  int patch;
}
enum ver = Version(0, 26, 6);
version (Posix) {
  version (DigitalMars) {
  } else version (LDC) {
  } else version (GNU) {
  } else {
    static assert (0, "Unsupported D compiler");
  }
} else {
  static assert (0, "Unsupported D compiler");
}