Revert "github generated gh-pages branch"
This reverts commit 97e0e510b5.
This commit is contained in:
4
a/.gitignore
vendored
Normal file
4
a/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*.swp*
|
||||
*tmp*
|
||||
*swp*
|
||||
*~
|
||||
5
a/ada.ada
Normal file
5
a/ada.ada
Normal 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
6
a/algol60.algol60
Normal 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
3
a/algol68.algol68
Normal file
@@ -0,0 +1,3 @@
|
||||
begin
|
||||
print(("Hello, world!",newline))
|
||||
end
|
||||
4
a/apc.apc
Normal file
4
a/apc.apc
Normal file
@@ -0,0 +1,4 @@
|
||||
probe program
|
||||
{
|
||||
on_entry log ("Hello, World!\n");
|
||||
}
|
||||
1
a/applescript.scpt
Normal file
1
a/applescript.scpt
Normal file
@@ -0,0 +1 @@
|
||||
display dialog "Hello World"
|
||||
1
a/arena.are
Normal file
1
a/arena.are
Normal file
@@ -0,0 +1 @@
|
||||
print("Hello World!");
|
||||
3
a/argh.agh
Normal file
3
a/argh.agh
Normal file
@@ -0,0 +1,3 @@
|
||||
lppppppppppppsrfj
|
||||
Hello World!* j
|
||||
qPh
|
||||
5
a/asp.asp
Normal file
5
a/asp.asp
Normal file
@@ -0,0 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
<% Response.Write "Hello World! How are you today?" %>
|
||||
</body>
|
||||
</html>
|
||||
24
a/assembler_intel.asm
Normal file
24
a/assembler_intel.asm
Normal 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
1
a/autohotkey.ahk
Normal file
@@ -0,0 +1 @@
|
||||
MsgBox, Hello World!
|
||||
1
a/autoit.au3
Normal file
1
a/autoit.au3
Normal file
@@ -0,0 +1 @@
|
||||
MsgBox(0, "Message Box", "Hello World!")
|
||||
Reference in New Issue
Block a user