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
a/.gitignore vendored Normal file
View File

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

5
a/ada.ada Normal file
View File

@@ -0,0 +1,5 @@
with Text_IO;
procedure Hello_World is
begin
Text_IO.Put_line("Hello World!");
end Hello_World;

6
a/algol60.algol60 Normal file
View File

@@ -0,0 +1,6 @@
BEGIN
FILE F(KIND=REMOTE);
EBCDIC ARRAY E[0:11];
REPLACE E BY "HELLO WORLD!";
WRITE(F, *, E);
END.

3
a/algol68.algol68 Normal file
View File

@@ -0,0 +1,3 @@
begin
print(("Hello, world!",newline))
end

4
a/apc.apc Normal file
View File

@@ -0,0 +1,4 @@
probe program
{
on_entry log ("Hello, World!\n");
}

1
a/apl.apl Normal file
View File

@@ -0,0 +1 @@
[]<-'Hello World!'

1
a/applescript.scpt Normal file
View File

@@ -0,0 +1 @@
display dialog "Hello World"

1
a/arena.are Normal file
View File

@@ -0,0 +1 @@
print("Hello World!");

3
a/argh.agh Normal file
View File

@@ -0,0 +1,3 @@
lppppppppppppsrfj
Hello World!* j
qPh

5
a/asp.asp Normal file
View File

@@ -0,0 +1,5 @@
<html>
<body>
<% Response.Write "Hello World! How are you today?" %>
</body>
</html>

24
a/assembler_intel.asm Normal file
View File

@@ -0,0 +1,24 @@
; hello_world.asm intel
.model small
.stack 100h
.data
msg db "Hello World!",'$'
.code
main proc
mov ax,@data
mov ds, ax
; hello-world is there
mov dx,offset msg
mov ah,09
int 21h
mov ax,4c00h
int 21h
main endp
end main

1
a/autohotkey.ahk Normal file
View File

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

1
a/autoit.au3 Normal file
View File

@@ -0,0 +1 @@
MsgBox(0, "Message Box", "Hello World!")

2
a/awk.awk Normal file
View File

@@ -0,0 +1,2 @@
# awk -f awk.awk
BEGIN { print "Hello World" }