hello-world
This commit is contained in:
6
hello-world/c/C++.cpp
Normal file
6
hello-world/c/C++.cpp
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <iostream>
|
||||
|
||||
int main()
|
||||
{
|
||||
std::cout << "Hello World" << std::endl;
|
||||
}
|
||||
6
hello-world/c/C.c
Normal file
6
hello-world/c/C.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("Hello World\n");
|
||||
return 0;
|
||||
}
|
||||
1
hello-world/c/CAML.ml
Normal file
1
hello-world/c/CAML.ml
Normal file
@@ -0,0 +1 @@
|
||||
print_endline "Hello World";;
|
||||
16
hello-world/c/CGI.c
Normal file
16
hello-world/c/CGI.c
Normal file
@@ -0,0 +1,16 @@
|
||||
#include <stdio.h>
|
||||
|
||||
main ()
|
||||
{
|
||||
printf ("Content-type: text/html\n");
|
||||
printf ("\n");
|
||||
printf ("<html>\n");
|
||||
printf ("<head>\n");
|
||||
printf ("<title>Hello World</title>\n");
|
||||
printf ("</head>\n");
|
||||
printf ("\n");
|
||||
printf ("<body>\n");
|
||||
printf ("<h1>Hello World</h1>\n");
|
||||
printf ("</body>\n");
|
||||
printf ("</html>\n");
|
||||
}
|
||||
8
hello-world/c/CLIPS.clips
Normal file
8
hello-world/c/CLIPS.clips
Normal file
@@ -0,0 +1,8 @@
|
||||
(defrule hw
|
||||
(f ?x)
|
||||
=>
|
||||
(printout t ?x crlf))
|
||||
|
||||
(assert (f "Hello World"))
|
||||
|
||||
(run)
|
||||
1
hello-world/c/CLISP.lisp
Normal file
1
hello-world/c/CLISP.lisp
Normal file
@@ -0,0 +1 @@
|
||||
(write-line "Hello World")
|
||||
6
hello-world/c/COBOL.cbl
Normal file
6
hello-world/c/COBOL.cbl
Normal file
@@ -0,0 +1,6 @@
|
||||
identification division.
|
||||
program-id. cobol.
|
||||
procedure division.
|
||||
main.
|
||||
display 'Hello World.' end-display.
|
||||
stop run.
|
||||
11
hello-world/c/COW.cow
Normal file
11
hello-world/c/COW.cow
Normal file
@@ -0,0 +1,11 @@
|
||||
MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO
|
||||
MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO
|
||||
MoO MoO Moo MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo MoO MoO
|
||||
MoO MoO MoO MoO MoO Moo Moo MoO MoO MoO Moo OOO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO
|
||||
MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO
|
||||
MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO
|
||||
MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO
|
||||
MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo MOo
|
||||
MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo
|
||||
MOo MOo MOo MOo MOo Moo MOo MOo MOo MOo MOo MOo MOo MOo Moo MoO MoO MoO Moo MOo MOo MOo MOo MOo MOo Moo MOo MOo MOo MOo MOo MOo MOo MOo Moo
|
||||
OOO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo
|
||||
2
hello-world/c/CSH.csh
Normal file
2
hello-world/c/CSH.csh
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/bin/csh
|
||||
echo "Hello World"
|
||||
1
hello-world/c/CSON.cson
Normal file
1
hello-world/c/CSON.cson
Normal file
@@ -0,0 +1 @@
|
||||
{'hello': 'world'}
|
||||
3
hello-world/c/CSS.css
Normal file
3
hello-world/c/CSS.css
Normal file
@@ -0,0 +1,3 @@
|
||||
body::before {
|
||||
content: "Hello World";
|
||||
}
|
||||
1
hello-world/c/CSharp.cs
Normal file
1
hello-world/c/CSharp.cs
Normal file
@@ -0,0 +1 @@
|
||||
System.Console.WriteLine("Hello World");
|
||||
3
hello-world/c/Cache ObjectScript.mac
Normal file
3
hello-world/c/Cache ObjectScript.mac
Normal file
@@ -0,0 +1,3 @@
|
||||
HelloWorld ;
|
||||
Write "Hello World"
|
||||
Quit
|
||||
1
hello-world/c/Cardinal.cardinal
Normal file
1
hello-world/c/Cardinal.cardinal
Normal file
@@ -0,0 +1 @@
|
||||
%"Hello World";x
|
||||
1
hello-world/c/Casio BASIC
Normal file
1
hello-world/c/Casio BASIC
Normal file
@@ -0,0 +1 @@
|
||||
"Hello World"
|
||||
6
hello-world/c/Cbot.txt
Normal file
6
hello-world/c/Cbot.txt
Normal file
@@ -0,0 +1,6 @@
|
||||
extern void object::New()
|
||||
{
|
||||
|
||||
message("Hello World");
|
||||
|
||||
}
|
||||
1
hello-world/c/Cduce.cduce
Normal file
1
hello-world/c/Cduce.cduce
Normal file
@@ -0,0 +1 @@
|
||||
print "Hello World";;
|
||||
10
hello-world/c/Centura.centura
Normal file
10
hello-world/c/Centura.centura
Normal file
@@ -0,0 +1,10 @@
|
||||
! Hello World in Centura
|
||||
|
||||
Function: HelloWorld
|
||||
Description:
|
||||
Returns
|
||||
Parameters
|
||||
Static Variables
|
||||
Local variables
|
||||
Actions
|
||||
Call SalMessageBox( 'Hello World','Message',MB_Ok)
|
||||
3
hello-world/c/Ceylon.ceylon
Normal file
3
hello-world/c/Ceylon.ceylon
Normal file
@@ -0,0 +1,3 @@
|
||||
shared void hello() {
|
||||
print("Hello World");
|
||||
}
|
||||
1
hello-world/c/Chaos.kaos
Normal file
1
hello-world/c/Chaos.kaos
Normal file
@@ -0,0 +1 @@
|
||||
print "Hello World"
|
||||
1
hello-world/c/Chapel.chpl
Normal file
1
hello-world/c/Chapel.chpl
Normal file
@@ -0,0 +1 @@
|
||||
writeln("Hello World");
|
||||
1
hello-world/c/Cheddar.cheddar
Normal file
1
hello-world/c/Cheddar.cheddar
Normal file
@@ -0,0 +1 @@
|
||||
print "Hello World"
|
||||
3
hello-world/c/Cheese++.cheese
Normal file
3
hello-world/c/Cheese++.cheese
Normal file
@@ -0,0 +1,3 @@
|
||||
Cheese
|
||||
Wensleydale(SwissHello WorldSwiss)Brie
|
||||
NoCheese
|
||||
65
hello-world/c/Chef.ch
Normal file
65
hello-world/c/Chef.ch
Normal file
@@ -0,0 +1,65 @@
|
||||
Hello World Cake with Chocolate sauce.
|
||||
|
||||
This prints hello world, while being tastier than Hello World Souffle. The main
|
||||
chef makes a " world!" cake, which he puts in the baking dish. When he gets the
|
||||
sous chef to make the "Hello" chocolate sauce, it gets put into the baking dish
|
||||
and then the whole thing is printed when he refrigerates the sauce. When
|
||||
actually cooking, I'm interpreting the chocolate sauce baking dish to be
|
||||
separate from the cake one and Liquefy to mean either melt or blend depending on
|
||||
context.
|
||||
|
||||
Ingredients.
|
||||
33 g chocolate chips
|
||||
100 g butter
|
||||
54 ml double cream
|
||||
2 pinches baking powder
|
||||
114 g sugar
|
||||
111 ml beaten eggs
|
||||
119 g flour
|
||||
32 g cocoa powder
|
||||
0 g cake mixture
|
||||
|
||||
Cooking time: 25 minutes.
|
||||
|
||||
Pre-heat oven to 180 degrees Celsius.
|
||||
|
||||
Method.
|
||||
Put chocolate chips into the mixing bowl.
|
||||
Put butter into the mixing bowl.
|
||||
Put sugar into the mixing bowl.
|
||||
Put beaten eggs into the mixing bowl.
|
||||
Put flour into the mixing bowl.
|
||||
Put baking powder into the mixing bowl.
|
||||
Put cocoa powder into the mixing bowl.
|
||||
Stir the mixing bowl for 1 minute.
|
||||
Combine double cream into the mixing bowl.
|
||||
Stir the mixing bowl for 4 minutes.
|
||||
Liquefy the contents of the mixing bowl.
|
||||
Pour contents of the mixing bowl into the baking dish.
|
||||
bake the cake mixture.
|
||||
Wait until baked.
|
||||
Serve with chocolate sauce.
|
||||
|
||||
chocolate sauce.
|
||||
|
||||
Ingredients.
|
||||
111 g sugar
|
||||
108 ml hot water
|
||||
108 ml heated double cream
|
||||
101 g dark chocolate
|
||||
72 g milk chocolate
|
||||
|
||||
Method.
|
||||
Clean the mixing bowl.
|
||||
Put sugar into the mixing bowl.
|
||||
Put hot water into the mixing bowl.
|
||||
Put heated double cream into the mixing bowl.
|
||||
dissolve the sugar.
|
||||
agitate the sugar until dissolved.
|
||||
Liquefy the dark chocolate.
|
||||
Put dark chocolate into the mixing bowl.
|
||||
Liquefy the milk chocolate.
|
||||
Put milk chocolate into the mixing bowl.
|
||||
Liquefy contents of the mixing bowl.
|
||||
Pour contents of the mixing bowl into the baking dish.
|
||||
Refrigerate for 1 hour.
|
||||
59
hello-world/c/Chicekn.chicken
Normal file
59
hello-world/c/Chicekn.chicken
Normal file
@@ -0,0 +1,59 @@
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken
|
||||
chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken
|
||||
|
||||
chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken
|
||||
|
||||
chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken
|
||||
chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken
|
||||
|
||||
chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken
|
||||
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken
|
||||
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken chicken
|
||||
chicken chicken chicken chicken chicken chicken
|
||||
10
hello-world/c/Cil.il
Normal file
10
hello-world/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
|
||||
}
|
||||
3
hello-world/c/Clean.icl
Normal file
3
hello-world/c/Clean.icl
Normal file
@@ -0,0 +1,3 @@
|
||||
module hello
|
||||
Start :: {#Char}
|
||||
Start = "Hello World"
|
||||
1
hello-world/c/Clipper.cli
Normal file
1
hello-world/c/Clipper.cli
Normal file
@@ -0,0 +1 @@
|
||||
? "Hello World"
|
||||
1
hello-world/c/Clipper.clipper
Normal file
1
hello-world/c/Clipper.clipper
Normal file
@@ -0,0 +1 @@
|
||||
? "Hello World"
|
||||
1
hello-world/c/Clipper.prg
Normal file
1
hello-world/c/Clipper.prg
Normal file
@@ -0,0 +1 @@
|
||||
? 'Hello World'
|
||||
1
hello-world/c/Clojure.clj
Normal file
1
hello-world/c/Clojure.clj
Normal file
@@ -0,0 +1 @@
|
||||
(println "Hello World")
|
||||
4
hello-world/c/Cobra.cobra
Normal file
4
hello-world/c/Cobra.cobra
Normal file
@@ -0,0 +1,4 @@
|
||||
class Hello
|
||||
|
||||
def main
|
||||
print 'Hello World'
|
||||
1
hello-world/c/Coconut.coc
Normal file
1
hello-world/c/Coconut.coc
Normal file
@@ -0,0 +1 @@
|
||||
"Hello World" |> print
|
||||
1
hello-world/c/CoffeeScript.coffee
Normal file
1
hello-world/c/CoffeeScript.coffee
Normal file
@@ -0,0 +1 @@
|
||||
alert "Hello World"
|
||||
2
hello-world/c/ColdFusion.cfm
Normal file
2
hello-world/c/ColdFusion.cfm
Normal file
@@ -0,0 +1,2 @@
|
||||
<cfset message = "Hello World">
|
||||
<cfoutput> #message#</cfoutput>
|
||||
6
hello-world/c/Common Lisp.lisp
Normal file
6
hello-world/c/Common Lisp.lisp
Normal file
@@ -0,0 +1,6 @@
|
||||
;; Common Lisp
|
||||
|
||||
(defun hello-world ()
|
||||
(format t "Hello World~%"))
|
||||
|
||||
(hello-world)
|
||||
1
hello-world/c/Concurnas.conc
Normal file
1
hello-world/c/Concurnas.conc
Normal file
@@ -0,0 +1 @@
|
||||
System.out.println("Hello World")
|
||||
1
hello-world/c/ContinuesEquation.ce
Normal file
1
hello-world/c/ContinuesEquation.ce
Normal file
@@ -0,0 +1 @@
|
||||
0 0 o'H'e'l'l'o',' 'w'o'r'l'd'!
|
||||
1
hello-world/c/Control Language.cllc
Normal file
1
hello-world/c/Control Language.cllc
Normal file
@@ -0,0 +1 @@
|
||||
SNDPGMMSG MSG("Hello World")
|
||||
5
hello-world/c/Cool.cl
Normal file
5
hello-world/c/Cool.cl
Normal file
@@ -0,0 +1,5 @@
|
||||
class Main inherits IO {
|
||||
main(): Object {
|
||||
out_string("Hello World.\n")
|
||||
};
|
||||
};
|
||||
1
hello-world/c/Cor.cor
Normal file
1
hello-world/c/Cor.cor
Normal file
@@ -0,0 +1 @@
|
||||
func main() console.log('Hello World')
|
||||
1
hello-world/c/Crystal.cr
Normal file
1
hello-world/c/Crystal.cr
Normal file
@@ -0,0 +1 @@
|
||||
puts "Hello World"
|
||||
10
hello-world/c/Cuda.cu
Normal file
10
hello-world/c/Cuda.cu
Normal file
@@ -0,0 +1,10 @@
|
||||
#include <stdio.h>
|
||||
|
||||
__global__ void hello_world(){
|
||||
printf("Hello World\n");
|
||||
}
|
||||
|
||||
int main() {
|
||||
hello_world<<<1,1>>>();
|
||||
return 0;
|
||||
}
|
||||
6
hello-world/c/Cuneiform.cfl
Normal file
6
hello-world/c/Cuneiform.cfl
Normal file
@@ -0,0 +1,6 @@
|
||||
def greet() -> <out : Str>
|
||||
in Bash *{
|
||||
out="Hello World"
|
||||
}*
|
||||
|
||||
( greet()|out );
|
||||
7
hello-world/c/Curry.curry
Normal file
7
hello-world/c/Curry.curry
Normal file
@@ -0,0 +1,7 @@
|
||||
-- "Hello World" demo for the Tcl/Tk library
|
||||
|
||||
import Tk
|
||||
|
||||
main = runWidget "Hello"
|
||||
(TkCol [] [TkLabel [TkText "Hello World"],
|
||||
TkButton tkExit [TkText "Stop"]])
|
||||
3
hello-world/c/CypherNeo4j.cypher
Normal file
3
hello-world/c/CypherNeo4j.cypher
Normal file
@@ -0,0 +1,3 @@
|
||||
CREATE (Hello:Word { val: 'Hello' }), (World:Word { val: 'World!' }),
|
||||
(Hello)-[:SPACE]->(World)
|
||||
RETURN Hello,World
|
||||
1
hello-world/c/cat.cat
Normal file
1
hello-world/c/cat.cat
Normal file
@@ -0,0 +1 @@
|
||||
Hello World
|
||||
Reference in New Issue
Block a user