cmake-d/samples/Hello/Demo/demo.d

17 lines
168 B
D

import std.stdio;
import Hello.hello;
int main()
{
version (GNU)
{
Hail hello = new Hail();
hello.Print();
}
else
{
Print();
}
return 0;
}