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

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

1
m/m4.m4 Normal file
View File

@@ -0,0 +1 @@
Hello

2
m/malbolge.mbg Normal file
View File

@@ -0,0 +1,2 @@
(=<`:9876Z4321UT.-Q+*)M'&%$H"!~}|Bzy?=|{z]KwZY44Eq0/{mlk**
hKs_dG5[m_BA{?-Y;;Vb'rR5431M}/.zHGwEDCAA@98\6543W10/.R,+O<

1
m/matlab.m Normal file
View File

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

4
m/mel.mel Normal file
View File

@@ -0,0 +1,4 @@
proc helloWorld () {
print "Hello World\n";
}
helloWorld;

10
m/modula-2.mod Normal file
View File

@@ -0,0 +1,10 @@
MODULE HelloWorld;
FROM Terminal2 IMPORT WriteString, WriteLn;
BEGIN
WriteString("Hello World");
WriteLn;
END HelloWorld.

5
m/modula-3.m3 Normal file
View File

@@ -0,0 +1,5 @@
MODULE HelloWorld;
IMPORT Io;
BEGIN
IO.Put ("Hello World\n")
END HelloWorld.

1
m/morsecode Normal file
View File

@@ -0,0 +1 @@
.... . .-.. .-.. --- .-- --- .-. .-.. -..

3
m/muf.muf Normal file
View File

@@ -0,0 +1,3 @@
: main
me @ "Hello World" notify
;

2
m/mysql.sql Normal file
View File

@@ -0,0 +1,2 @@
SET @message = 'Hello World!';
SELECT @message;