Add Phobos sample

This commit is contained in:
flithm 2007-08-28 11:37:16 +00:00
commit 69f0cfbaba
9 changed files with 84 additions and 116 deletions

View file

@ -0,0 +1,14 @@
module Hello.hello;
import std.stdio;
class Hail
{
public:
void Print()
{
writefln ("Hello, World!");
}
}