Revert "github generated gh-pages branch"
This reverts commit 97e0e510b5.
This commit is contained in:
4
d/.gitignore
vendored
Normal file
4
d/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*.swp*
|
||||
*tmp*
|
||||
*swp*
|
||||
*~
|
||||
7
d/d.D
Normal file
7
d/d.D
Normal file
@@ -0,0 +1,7 @@
|
||||
// Hello World in D
|
||||
import std.stdio;
|
||||
|
||||
void main()
|
||||
{
|
||||
writefln("Hello World!");
|
||||
}
|
||||
8
d/delphi.delphi
Normal file
8
d/delphi.delphi
Normal 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
6
d/delphi.pas
Normal file
@@ -0,0 +1,6 @@
|
||||
program HelloWorld;
|
||||
{$APPTYPE CONSOLE}
|
||||
|
||||
begin
|
||||
WriteLn('Hello World');
|
||||
end.
|
||||
5
d/dtrace.d
Normal file
5
d/dtrace.d
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/sbin/dtrace -qs
|
||||
BEGIN {
|
||||
printf("Hello World");
|
||||
exit(0);
|
||||
}
|
||||
5
d/dylan.dl
Normal file
5
d/dylan.dl
Normal file
@@ -0,0 +1,5 @@
|
||||
define method main (#rest args)
|
||||
princ("Hello world!");
|
||||
end;
|
||||
|
||||
main();
|
||||
Reference in New Issue
Block a user