added licence, sample sources, reorganized trunk

This commit is contained in:
selman 2007-03-17 18:05:51 +00:00
commit 1ebea84622
71 changed files with 35508 additions and 2 deletions

17
samples/Hello/Demo/demo.d Normal file
View file

@ -0,0 +1,17 @@
import std.stdio;
import Hello.hello;
int main()
{
version (GNU)
{
Hail hello = new Hail();
hello.Print();
}
else
{
Print();
}
return 0;
}