cmake-d/tests/HelloPhobos/Hello/hello.d

15 lines
121 B
D
Raw Normal View History

2007-08-28 11:37:16 +00:00
module Hello.hello;
import std.stdio;
class Hail
{
public:
void Print()
{
writefln ("Hello, World!");
}
}