cmake-d/samples/Hello/Demo/demo.d
2007-03-20 12:27:50 +00:00

10 lines
113 B
D

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