Revert "github generated gh-pages branch"
This reverts commit 97e0e510b5.
This commit is contained in:
4
c/.gitignore
vendored
Normal file
4
c/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*.swp*
|
||||
*tmp*
|
||||
*swp*
|
||||
*~
|
||||
8
c/c++.cpp
Normal file
8
c/c++.cpp
Normal file
@@ -0,0 +1,8 @@
|
||||
#include<iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
cout << "Hello World" << endl;
|
||||
}
|
||||
6
c/c.c
Normal file
6
c/c.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include<stdio.h>
|
||||
|
||||
int main(void) {
|
||||
printf("Hello World\n");
|
||||
return 0;
|
||||
}
|
||||
32
c/chef.ch
Normal file
32
c/chef.ch
Normal 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
10
c/cil.il
Normal 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
1
c/clipper.prg
Normal file
@@ -0,0 +1 @@
|
||||
? 'Hello World'
|
||||
8
c/clips.clips
Normal file
8
c/clips.clips
Normal file
@@ -0,0 +1,8 @@
|
||||
(defrule hw
|
||||
(f ?x)
|
||||
=>
|
||||
(printout t ?x crlf))
|
||||
|
||||
(assert (f "Hello World"))
|
||||
|
||||
(run)
|
||||
1
c/clisp.lisp
Normal file
1
c/clisp.lisp
Normal file
@@ -0,0 +1 @@
|
||||
(write-line "Hello World")
|
||||
1
c/clojure.clj
Normal file
1
c/clojure.clj
Normal file
@@ -0,0 +1 @@
|
||||
(println "Hello, World")
|
||||
6
c/cobol.cbl
Normal file
6
c/cobol.cbl
Normal file
@@ -0,0 +1,6 @@
|
||||
IDENTIFICATION DIVISION.
|
||||
PROGRAM-ID. HELLOWORLD.
|
||||
PROCEDURE DIVISION.
|
||||
MAIN.
|
||||
DISPLAY 'Hello, world.'.
|
||||
STOP RUN.
|
||||
2
c/coldfusion.cfm
Normal file
2
c/coldfusion.cfm
Normal file
@@ -0,0 +1,2 @@
|
||||
<cfset message = "Hello World">
|
||||
<cfoutput> #message#</cfoutput>
|
||||
5
c/csharp.cs
Normal file
5
c/csharp.cs
Normal file
@@ -0,0 +1,5 @@
|
||||
class HelloWorld {
|
||||
static void Main() {
|
||||
System.Console.WriteLine("Hello World");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user