cmake-d/samples/HelloPhobos/Demo/demo.d
2007-08-28 11:20:26 +00:00

10 lines
113 B
D

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