From 75f91abbd1d935c9645b0df216909a91eaa86eb3 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 2 Oct 2020 11:55:53 +0530 Subject: [PATCH 1/4] Add Vighnesh to Contributors list --- README.md | 1 + html.html | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 html.html diff --git a/README.md b/README.md index 71c7d99..082021b 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ This is a repository full of implementations of the classic, "Hello, world!", in - Go - Groovy - Haskell +- Html - Java - JavaScript - Kotlin diff --git a/html.html b/html.html new file mode 100644 index 0000000..3df69cf --- /dev/null +++ b/html.html @@ -0,0 +1,9 @@ + + + + + + +

Hello World....

+ + \ No newline at end of file From 4e46e3e2fce4456e79f2a7e601f987c880404b61 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 2 Oct 2020 12:32:42 +0530 Subject: [PATCH 2/4] Add Clipper,processing,Logo --- Clipper.DBT | 1 + Logo.eps | 1 + Processing.pde | 3 +++ README.md | 3 +++ 4 files changed, 8 insertions(+) create mode 100644 Clipper.DBT create mode 100644 Logo.eps create mode 100644 Processing.pde diff --git a/Clipper.DBT b/Clipper.DBT new file mode 100644 index 0000000..8992efd --- /dev/null +++ b/Clipper.DBT @@ -0,0 +1 @@ +? "Hello World" \ No newline at end of file diff --git a/Logo.eps b/Logo.eps new file mode 100644 index 0000000..19ab7e6 --- /dev/null +++ b/Logo.eps @@ -0,0 +1 @@ +print [Hello,world !] \ No newline at end of file diff --git a/Processing.pde b/Processing.pde new file mode 100644 index 0000000..c89102c --- /dev/null +++ b/Processing.pde @@ -0,0 +1,3 @@ +void setup(){ + println("Hello, world!"); +} \ No newline at end of file diff --git a/README.md b/README.md index 082021b..5a19c56 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ This is a repository full of implementations of the classic, "Hello, world!", in - C# - C++ - CoffeeScript +- Clipper - Fortran - Go - Groovy @@ -19,8 +20,10 @@ This is a repository full of implementations of the classic, "Hello, world!", in - JavaScript - Kotlin - Lua +- Logo - Pascal - Perl +- Processing - Python 3 - PHP - R From f2145120fe4b48ac5cb391e44083ef6a73bae3a0 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 2 Oct 2020 13:14:17 +0530 Subject: [PATCH 3/4] Add Objective-c Implementation --- Objective-c.h | 7 +++++++ README.md | 1 + 2 files changed, 8 insertions(+) create mode 100644 Objective-c.h diff --git a/Objective-c.h b/Objective-c.h new file mode 100644 index 0000000..1009aff --- /dev/null +++ b/Objective-c.h @@ -0,0 +1,7 @@ +#import +#import +int main(void) +{ + NSLog(@"Hello, world!"); + return 0; +} \ No newline at end of file diff --git a/README.md b/README.md index 5a19c56..524a08d 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ This is a repository full of implementations of the classic, "Hello, world!", in - Kotlin - Lua - Logo +- Objective-c - Pascal - Perl - Processing From 58504c3a695689782efa3f8c58087671208daad3 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 2 Oct 2020 13:20:18 +0530 Subject: [PATCH 4/4] Add Jquery Implementation --- JQuey.js | 1 + README.md | 1 + 2 files changed, 2 insertions(+) create mode 100644 JQuey.js diff --git a/JQuey.js b/JQuey.js new file mode 100644 index 0000000..5611e2e --- /dev/null +++ b/JQuey.js @@ -0,0 +1 @@ +$("body").append("Hello world!"); diff --git a/README.md b/README.md index 524a08d..1d69418 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ This is a repository full of implementations of the classic, "Hello, world!", in - Html - Java - JavaScript +- JQuey - Kotlin - Lua - Logo