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

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

View File

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

6
c/c.c
View File

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

View File

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

View File

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

View File

@@ -1,32 +0,0 @@
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.

View File

@@ -1,10 +0,0 @@
// 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
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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