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

11 lines
113 B
D
Raw Normal View History

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