Revert "github generated gh-pages branch"

This reverts commit 97e0e510b5.
This commit is contained in:
Robert Peters
2011-03-13 20:36:14 +01:00
parent 97e0e510b5
commit 7f878aa890
181 changed files with 1096 additions and 88 deletions

4
d/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
*.swp*
*tmp*
*swp*
*~

7
d/d.D Normal file
View File

@@ -0,0 +1,7 @@
// Hello World in D
import std.stdio;
void main()
{
writefln("Hello World!");
}

1
d/db2.sql Normal file
View File

@@ -0,0 +1 @@
VALUES('hello world')

8
d/delphi.delphi Normal file
View File

@@ -0,0 +1,8 @@
// Hello World in Delphi
Program Hello_World;
($APPTYPE CONSOLE)
Begin
WriteLn('Hello World');
End.

6
d/delphi.pas Normal file
View File

@@ -0,0 +1,6 @@
program HelloWorld;
{$APPTYPE CONSOLE}
begin
WriteLn('Hello World');
end.

1
d/dos.bat Normal file
View File

@@ -0,0 +1 @@
@echo Hello World!

5
d/dtrace.d Normal file
View File

@@ -0,0 +1,5 @@
#!/usr/sbin/dtrace -qs
BEGIN {
printf("Hello World");
exit(0);
}

5
d/dylan.dl Normal file
View File

@@ -0,0 +1,5 @@
define method main (#rest args)
princ("Hello world!");
end;
main();