github generated gh-pages branch

This commit is contained in:
mimi1971
2010-06-24 20:09:28 +08:00
committed by Mike Donaghy
parent 27cce9afa1
commit 97e0e510b5
181 changed files with 88 additions and 1096 deletions

4
a/.gitignore vendored
View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,24 +0,0 @@
; 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

View File

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

View File

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

View File

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