Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
00baf9b
Add contributing guide
knightking100 Oct 1, 2017
d48c158
Update README.md
knightking100 Oct 1, 2017
195bfa3
Update CONTRIBUTING.MD
knightking100 Oct 1, 2017
32cb0a7
Add Java Hello World
Alastifer Oct 1, 2017
f8cabc1
Update CONTRIBUTING.MD
knightking100 Oct 1, 2017
e1eea50
Added Hello World in lua
TiagoDanin Oct 1, 2017
e4956b1
Add Delphi Hello World
Alastifer Oct 1, 2017
6a123f2
Add Delphi Hello World
Alastifer Oct 1, 2017
d86c492
Add bash Hello World
Oct 1, 2017
40bd56f
Merge pull request #4 from TiagoDanin-Forks/lua
knightking100 Oct 1, 2017
e246876
Merge pull request #6 from davidbouman/patch-1
knightking100 Oct 1, 2017
3e31dde
Add python Hello World
TiagoDanin Oct 1, 2017
51976ed
Merge pull request #7 from TiagoDanin-Forks/python
knightking100 Oct 1, 2017
50e97e6
Merge pull request #2 from Alastifer/hello_java
knightking100 Oct 1, 2017
6b454ef
Update CONTRIBUTING.MD
knightking100 Oct 1, 2017
b4938e5
Merge pull request #5 from Alastifer/hello_delphi
knightking100 Oct 1, 2017
bdb6049
Add typescript Hello World
TiagoDanin Oct 1, 2017
de9ca59
Add zsh Hello World
kaitoii11 Oct 1, 2017
3a77f9d
Add Elixir Hello World
Oct 1, 2017
da328f3
Add Ruby Hello World
TiagoDanin Oct 1, 2017
c56b1cf
Merge pull request #17 from TiagoDanin-Forks/Ruby
knightking100 Oct 1, 2017
96f79e1
add C Hello World
divyankkarolia97 Oct 1, 2017
98b1535
Merge pull request #9 from TiagoDanin-Forks/TypeScript
knightking100 Oct 1, 2017
ec88cd2
Add Elixir Hello World
TiagoDanin Oct 1, 2017
d46ab51
Merge pull request #15 from kaitoii11/master
knightking100 Oct 1, 2017
89b897f
Merge pull request #18 from divyankkarolia97/master
knightking100 Oct 1, 2017
683328f
Merge pull request #19 from TiagoDanin-Forks/Elixir
knightking100 Oct 1, 2017
ad3110a
Revert "Add Elixir Hello World"
knightking100 Oct 1, 2017
9dfe5eb
Merge pull request #20 from knightking100/revert-19-Elixir
knightking100 Oct 1, 2017
0df4e1e
Merge pull request #16 from davgomgar/master
knightking100 Oct 1, 2017
63183d6
Create Groovy.gsh
rishz Oct 1, 2017
b853d13
Create JavaScript.js
rishz Oct 1, 2017
802862c
Delete JavaScript.js
rishz Oct 1, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions C.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include <stdio.h>

int main(){

printf("Hello World\n");

return 0;
}
10 changes: 10 additions & 0 deletions CONTRIBUTING.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Contributing
## This is a collection of hello world programs
## How to contribute
- Create a pull request that adds a new `Hello World` program.
- The new file must be named `<language_name>.<extension>`
- The pull request must be named `Add <language_name> Hello World`
- Remember to reference issue #1
- Only one new Hello World per pull request
- Don't add existing Hello World programs in the repo. You can see them in #1
## I will merge your pull request on condition that it's valid.
8 changes: 8 additions & 0 deletions Delphi.dpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
program Delphi;
{$APPTYPE CONSOLE}
uses sysutils;

begin
Writeln('Hello World');
ReadLn;
end.
1 change: 1 addition & 0 deletions Groovy.gsh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
println "Hello World"
7 changes: 7 additions & 0 deletions Java.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
class Java {

public static void main(String[] args) {
System.out.println("Hello World");
}

}
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# hello-worlds
Collection of Hello World programs
Collection of Hello World programs.
### Before you contribute, please see [CONTRIBUTION GUIDE](https://github.com/knightking100/hello-worlds/blob/master/CONTRIBUTING.MD)
1 change: 1 addition & 0 deletions Ruby.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
puts "Hello World"
1 change: 1 addition & 0 deletions bash.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
echo "Hello World"
1 change: 1 addition & 0 deletions elixir.ex
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
IO.puts "Hello World"
1 change: 1 addition & 0 deletions lua.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello World")
1 change: 1 addition & 0 deletions python.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello World")
1 change: 1 addition & 0 deletions typescript.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("Hello World");
2 changes: 2 additions & 0 deletions zsh.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env zsh
echo "Hello World"