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

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

8
c/c++.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include<iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
}

6
c/c.c Normal file
View File

@@ -0,0 +1,6 @@
#include<stdio.h>
int main(void) {
printf("Hello World\n");
return 0;
}

1
c/caml.ml Normal file
View File

@@ -0,0 +1 @@
print_endline "Hello world!";;

1
c/cat.cat Normal file
View File

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

32
c/chef.ch Normal file
View File

@@ -0,0 +1,32 @@
World Souffle.
Ingredients.
72 g haricot beans
101 eggs
108 g lard
111 cups oil
32 zucchinis
119 ml water
114 g red salmon
100 g dijon mustard
33 potatoes
Method.
Put potatoes into the mixing bowl.
Put dijon mustard into the mixing bowl.
Put lard into the mixing bowl.
Put red salmon into the mixing bowl.
Put oil into the mixing bowl.
Put water into the mixing bowl.
Put zucchinis into the mixing bowl.
Put oil into the mixing bowl.
Put lard into the mixing bowl.
Put lard into the mixing bowl.
Put eggs into the mixing bowl.
Put haricot beans into the mixing bowl.
Liquefy contents of the mixing bowl.
Pour contents of the mixing bowl into the baking dish.
Serves 1.

10
c/cil.il Normal file
View File

@@ -0,0 +1,10 @@
// ilasm cil.il
.assembly HelloWorld {}
.method public static void Main() cil managed
{
.entrypoint
.maxstack 1
ldstr "Hello World"
call void [mscorlib]System.Console::WriteLine(string)
ret
}

1
c/clipper.prg Normal file
View File

@@ -0,0 +1 @@
? 'Hello World'

8
c/clips.clips Normal file
View File

@@ -0,0 +1,8 @@
(defrule hw
(f ?x)
=>
(printout t ?x crlf))
(assert (f "Hello World"))
(run)

1
c/clisp.lisp Normal file
View File

@@ -0,0 +1 @@
(write-line "Hello World")

1
c/clojure.clj Normal file
View File

@@ -0,0 +1 @@
(println "Hello, World")

6
c/cobol.cbl Normal file
View File

@@ -0,0 +1,6 @@
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLOWORLD.
PROCEDURE DIVISION.
MAIN.
DISPLAY 'Hello, world.'.
STOP RUN.

2
c/coldfusion.cfm Normal file
View File

@@ -0,0 +1,2 @@
<cfset message = "Hello World">
<cfoutput> #message#</cfoutput>

5
c/csharp.cs Normal file
View File

@@ -0,0 +1,5 @@
class HelloWorld {
static void Main() {
System.Console.WriteLine("Hello World");
}
}