Skip to content

Commit

Permalink
Release 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Suplanus committed Dec 5, 2013
1 parent 3fd896b commit f504a5c
Show file tree
Hide file tree
Showing 172 changed files with 69 additions and 33 deletions.
2 changes: 1 addition & 1 deletion Hello World/Ada.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ with Ada.Text_Io;

procedure Hello_World is
begin
Ada.Text_Io.Put_Line("Hello World!");
Ada.Text_Io.Put_Line("Hello world");
end;
2 changes: 1 addition & 1 deletion Hello World/Assembly.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ main proc
retn


hello_message db 'Hello, World!$'
hello_message db 'Hello world!$'

main endp
end main
2 changes: 1 addition & 1 deletion Hello World/Basic.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
PRINT "Hello world!"
PRINT "Hello world"
Empty file modified Hello World/Brainfuck.txt
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion Hello World/C#.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ class ExampleClass
{
static void Main()
{
System.Console.WriteLine("Hello, world!");
System.Console.WriteLine("Hello world");
}
}
2 changes: 1 addition & 1 deletion Hello World/C++.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

int main()
{
std::cout << "Hello World!" << std::endl;
std::cout << "Hello world" << std::endl;
return 0;
}
2 changes: 1 addition & 1 deletion Hello World/C.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

int main(void)
{
printf("Hello world\n");
printf("Hello world");
return 0;
}
2 changes: 1 addition & 1 deletion Hello World/Cobol.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO-WORLD.
PROCEDURE DIVISION.
DISPLAY 'Hello, world'.
DISPLAY 'Hello world'.
STOP RUN.
Empty file modified Hello World/Cow.txt
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion Hello World/Delphi.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{$APPTYPE CONSOLE}
begin
Writeln('Hello, world!');
Writeln('Hello world');
end.
2 changes: 1 addition & 1 deletion Hello World/Erlang.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
io:format("~s~n", ["hello, world"])
io:format("~s~n", ["hello world"])
2 changes: 1 addition & 1 deletion Hello World/Fortran.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
program hello
print *, "Hello World"
print *, "Hello world"
end program hello
2 changes: 1 addition & 1 deletion Hello World/Go.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ package main
import "fmt"

func main() {
fmt.Println("Hello World!")
fmt.Println("Hello world")
}
2 changes: 1 addition & 1 deletion Hello World/Groovy.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
println "Hello World!"
println "Hello world"
2 changes: 1 addition & 1 deletion Hello World/Haskell.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
main = print "Hello World!"
main = print "Hello world"
2 changes: 1 addition & 1 deletion Hello World/Java.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello world!");
System.out.println("Hello world");
}
}
2 changes: 1 addition & 1 deletion Hello World/JavaScript.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
document.write('Hello world!');
document.write('Hello world');
2 changes: 1 addition & 1 deletion Hello World/Lisp.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
(print "Hello world!")
(print "Hello world")
2 changes: 1 addition & 1 deletion Hello World/Logo.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
print [Hello World]
print [Hello world]
2 changes: 1 addition & 1 deletion Hello World/Lolcode.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
HAI
CAN HAS STDIO?
VISIBLE "HAI WORLD!"
VISIBLE "Hello world"
KTHXBYE
2 changes: 1 addition & 1 deletion Hello World/Lua.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
print("Hello World!")
print("Hello world")
2 changes: 1 addition & 1 deletion Hello World/MATLAB.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
disp('Hello World!')
disp('Hello world')
2 changes: 1 addition & 1 deletion Hello World/Objective C.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

int main(void)
{
printf("Hello, World!\n");
printf("Hello world");
return 0;
}
2 changes: 1 addition & 1 deletion Hello World/PHP.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php echo 'Hello, world'; ?>
<?php echo 'Hello world'; ?>
2 changes: 1 addition & 1 deletion Hello World/Pascal.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
program HelloWorld;

begin
WriteLn('Hello world!');
WriteLn('Hello world');
end.
2 changes: 1 addition & 1 deletion Hello World/Perl.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
print "Hello World.";
print "Hello world";
2 changes: 1 addition & 1 deletion Hello World/Prolog.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
main :- write('Hello world!'), nl.
main :- write('Hello world'), nl.
2 changes: 1 addition & 1 deletion Hello World/Python.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
print("Hello World")
print("Hello world")
2 changes: 1 addition & 1 deletion Hello World/R.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cat('Hello world!')
cat('Hello world')
2 changes: 1 addition & 1 deletion Hello World/Ruby.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
puts "Hello world!"
puts "Hello world"
2 changes: 1 addition & 1 deletion Hello World/Visual Basic.NET.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Module Module1
Sub Main()
Console.WriteLine("Hello, world!")
Console.WriteLine("Hello world")
End Sub
End Module
Empty file modified Hello World/Whitespace.txt
100644 → 100755
Empty file.
Binary file removed Images/PNG/card-back.png
Binary file not shown.
Binary file removed Images/PNG/cards/Ada.png
Binary file not shown.
Binary file removed Images/PNG/cards/Assembly.png
Binary file not shown.
Binary file removed Images/PNG/cards/Basic.png
Binary file not shown.
Binary file removed Images/PNG/cards/Brainfuck.png
Binary file not shown.
Binary file removed Images/PNG/cards/C#.png
Binary file not shown.
Binary file removed Images/PNG/cards/C++.png
Binary file not shown.
Binary file removed Images/PNG/cards/C.png
Binary file not shown.
Binary file removed Images/PNG/cards/COBOL.png
Binary file not shown.
Binary file removed Images/PNG/cards/Cow.png
Binary file not shown.
Binary file removed Images/PNG/cards/Delphi.png
Binary file not shown.
Binary file removed Images/PNG/cards/Erlang.png
Binary file not shown.
Binary file removed Images/PNG/cards/Fortran.png
Binary file not shown.
Binary file removed Images/PNG/cards/Go.png
Binary file not shown.
Binary file removed Images/PNG/cards/Groovy.png
Binary file not shown.
Binary file removed Images/PNG/cards/Haskell.png
Binary file not shown.
Binary file removed Images/PNG/cards/Java.png
Binary file not shown.
Binary file removed Images/PNG/cards/JavaScript.png
Binary file not shown.
Binary file removed Images/PNG/cards/LOLCODE.png
Binary file not shown.
Binary file removed Images/PNG/cards/Lisp.png
Binary file not shown.
Binary file removed Images/PNG/cards/Logo.png
Binary file not shown.
Binary file removed Images/PNG/cards/Lua.png
Binary file not shown.
Binary file removed Images/PNG/cards/MATLAB.png
Binary file not shown.
Binary file removed Images/PNG/cards/Objective-C.png
Binary file not shown.
Binary file removed Images/PNG/cards/PHP.png
Binary file not shown.
Binary file removed Images/PNG/cards/Pascal.png
Diff not rendered.
Binary file removed Images/PNG/cards/Perl.png
Diff not rendered.
Binary file removed Images/PNG/cards/Prolog.png
Diff not rendered.
Binary file removed Images/PNG/cards/Python.png
Diff not rendered.
Binary file removed Images/PNG/cards/R.png
Diff not rendered.
Binary file removed Images/PNG/cards/Ruby.png
Diff not rendered.
Binary file removed Images/PNG/cards/Visual-Basic.png
Diff not rendered.
Binary file removed Images/PNG/cards/Whitespace.png
Diff not rendered.
Binary file removed Images/PNG/cover-back.png
Diff not rendered.
Binary file removed Images/PNG/cover.png
Diff not rendered.
Binary file removed Images/PSD/cards/Ada.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Assembly.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Basic.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Brainfuck.psd
Diff not rendered.
Binary file removed Images/PSD/cards/C#.psd
Diff not rendered.
Binary file removed Images/PSD/cards/C++.psd
Diff not rendered.
Binary file removed Images/PSD/cards/C.psd
Diff not rendered.
Binary file removed Images/PSD/cards/COBOL.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Cow.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Delphi.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Erlang.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Fortran.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Go.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Groovy.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Haskell.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Java.psd
Diff not rendered.
Binary file removed Images/PSD/cards/JavaScript.psd
Diff not rendered.
Binary file removed Images/PSD/cards/LOLCODE.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Lisp.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Logo.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Lua.psd
Diff not rendered.
Binary file removed Images/PSD/cards/MATLAB.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Objective-C.psd
Diff not rendered.
Binary file removed Images/PSD/cards/PHP.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Pascal.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Perl.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Prolog.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Python.psd
Diff not rendered.
Binary file removed Images/PSD/cards/R.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Ruby.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Visual Basic.NET.psd
Diff not rendered.
Binary file removed Images/PSD/cards/Whitespace.psd
Diff not rendered.
Binary file removed Images/PSD/cover-back.psd
Diff not rendered.
Binary file renamed Images/PSD/card-back.psd → Images/RAW/card-back.psd
100644 → 100755
Diff not rendered.
Binary file added Images/RAW/cards/Ada.psd
Diff not rendered.
Binary file added Images/RAW/cards/Assembly.psd
Diff not rendered.
Binary file added Images/RAW/cards/Basic.psd
Diff not rendered.
Binary file added Images/RAW/cards/Brainfuck.psd
Diff not rendered.
Binary file added Images/RAW/cards/C#.psd
Diff not rendered.
Binary file added Images/RAW/cards/C++.psd
Diff not rendered.
Binary file added Images/RAW/cards/C.psd
Diff not rendered.
Binary file added Images/RAW/cards/COBOL.psd
Diff not rendered.
Binary file added Images/RAW/cards/Cow.psd
Diff not rendered.
Binary file added Images/RAW/cards/Delphi.psd
Diff not rendered.
Binary file added Images/RAW/cards/Erlang.psd
Diff not rendered.
Binary file added Images/RAW/cards/Fortran.psd
Diff not rendered.
Binary file added Images/RAW/cards/Go.psd
Diff not rendered.
Binary file added Images/RAW/cards/Groovy.psd
Diff not rendered.
Binary file added Images/RAW/cards/Haskell.psd
Diff not rendered.
Binary file added Images/RAW/cards/Java.psd
Diff not rendered.
Binary file added Images/RAW/cards/JavaScript.psd
Diff not rendered.
Binary file added Images/RAW/cards/LOLCODE.psd
Diff not rendered.
Binary file added Images/RAW/cards/Lisp.psd
Diff not rendered.
Binary file added Images/RAW/cards/Logo.psd
Diff not rendered.
Binary file added Images/RAW/cards/Lua.psd
Diff not rendered.
Binary file added Images/RAW/cards/MATLAB.psd
Diff not rendered.
Binary file added Images/RAW/cards/Objective-C.psd
Diff not rendered.
Binary file added Images/RAW/cards/PHP.psd
Diff not rendered.
Binary file added Images/RAW/cards/Pascal.psd
Diff not rendered.
Binary file added Images/RAW/cards/Perl.psd
Diff not rendered.
Binary file added Images/RAW/cards/Prolog.psd
Diff not rendered.
Binary file added Images/RAW/cards/Python.psd
Diff not rendered.
Binary file added Images/RAW/cards/R.psd
Diff not rendered.
Binary file added Images/RAW/cards/Ruby.psd
Diff not rendered.
Binary file added Images/RAW/cards/Visual Basic.NET.psd
Diff not rendered.
Binary file added Images/RAW/cards/Whitespace.psd
Diff not rendered.
Binary file added Images/RAW/cover-back.psd
Diff not rendered.
Binary file renamed Images/PSD/cover.psd → Images/RAW/cover.psd
Diff not rendered.
Binary file added Images/WEB/card-back.jpg
Binary file added Images/WEB/cards/Ada.jpg
Binary file added Images/WEB/cards/Assembly.jpg
Binary file added Images/WEB/cards/Basic.jpg
Binary file added Images/WEB/cards/Brainfuck.jpg
Binary file added Images/WEB/cards/C#.jpg
Binary file added Images/WEB/cards/C++.jpg
Binary file added Images/WEB/cards/C.jpg
Binary file added Images/WEB/cards/COBOL.jpg
Binary file added Images/WEB/cards/Cow.jpg
Binary file added Images/WEB/cards/Delphi.jpg
Binary file added Images/WEB/cards/Erlang.jpg
Binary file added Images/WEB/cards/Fortran.jpg
Binary file added Images/WEB/cards/Go.jpg
Binary file added Images/WEB/cards/Groovy.jpg
Binary file added Images/WEB/cards/Haskell.jpg
Binary file added Images/WEB/cards/Java.jpg
Binary file added Images/WEB/cards/JavaScript.jpg
Binary file added Images/WEB/cards/LOLCODE.jpg
Binary file added Images/WEB/cards/Lisp.jpg
Binary file added Images/WEB/cards/Logo.jpg
Binary file added Images/WEB/cards/Lua.jpg
Binary file added Images/WEB/cards/MATLAB.jpg
Binary file added Images/WEB/cards/Objective-C.jpg
Binary file added Images/WEB/cards/PHP.jpg
Binary file added Images/WEB/cards/Pascal.jpg
Binary file added Images/WEB/cards/Perl.jpg
Binary file added Images/WEB/cards/Prolog.jpg
Binary file added Images/WEB/cards/Python.jpg
Binary file added Images/WEB/cards/R.jpg
Binary file added Images/WEB/cards/Ruby.jpg
Binary file added Images/WEB/cards/Visual-Basic.NET.jpg
Binary file added Images/WEB/cards/Whitespace.jpg
Binary file added Images/WEB/cover-back.jpg
Binary file added Images/WEB/cover.jpg
Binary file modified Properties.xls
100644 → 100755
Binary file not shown.
44 changes: 40 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<em>Created by:
Johann Weiher</em>

<p>★★★★★★★★★★★★★★★★★★★★★★★★</p>
<strong>Links:</strong>
<ul>
<li>http://www.suplanus.de/codequartett-page/</li>
<li>http://www.startnext.de/codequartett/</li>
<li>http://github.com/Suplanus/CodeQuartett/</li>
</ul>
<br>
<br>
<p>★★★★★★★★★★★★★★★★★★★★★★★★</p>

<p>
<strong>Rules:</strong>
<p>
Expand All @@ -24,4 +24,40 @@ That player then looks at their new topmost card, and chooses the category for t
In the event of a draw, the cards are placed in the center and a new category is chosen from the next card by the same person as in the previous round.
The winner of that round obtains all of the cards in the center as well as the top card from each player.
Players are eliminated when they lose their last card, and the winner is the player who obtains the whole pack.
</p></p>
</p>
</p>

<p>★★★★★★★★★★★★★★★★★★★★★★★★</p>

<strong>Changelog:</strong>
<p>V2.0: Changed "Hello world" spelling/length</p>
<ul>
<li>Ada</li>
<li>Assembly</li>
<li>Basic</li>
<li>C</li>
<li>C#</li>
<li>C++</li>
<li>Cobol</li>
<li>Delphi</li>
<li>Erlang</li>
<li>Go</li>
<li>Groovy</li>
<li>Haskell</li>
<li>Java</li>
<li>Javascript</li>
<li>Lisp</li>
<li>Lolcode</li>
<li>Lua</li>
<li>MATLAB</li>
<li>Objective C</li>
<li>Pascal</li>
<li>Perl</li>
<li>PHP</li>
<li>Prolog</li>
<li>R</li>
<li>Ruby</li>
<li>Visual Basic.NET</li>
</ul>

<p>★★★★★★★★★★★★★★★★★★★★★★★★</p>

0 comments on commit f504a5c

Please sign in to comment.