From 205d60795d67d2f17fcf54763de0a281cd013342 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 15:00:48 +0530 Subject: [PATCH 01/14] Create hello-world.c Created a Simple hello world file in C language --- C/hello-world.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 C/hello-world.c diff --git a/C/hello-world.c b/C/hello-world.c new file mode 100644 index 0000000..34d86c4 --- /dev/null +++ b/C/hello-world.c @@ -0,0 +1,6 @@ +#include +int main() { + // printf() displays the string inside quotation + printf("Hello, World!"); + return 0; +} From acbddc4600d85b6b5bec55f04614651228da17c1 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 15:05:15 +0530 Subject: [PATCH 02/14] Create Hello-World.java Java Program for hello World --- Java/Hello-World.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Java/Hello-World.java diff --git a/Java/Hello-World.java b/Java/Hello-World.java new file mode 100644 index 0000000..e1a0fdb --- /dev/null +++ b/Java/Hello-World.java @@ -0,0 +1,5 @@ +class HelloWorld { + public static void main(String[] args) { + System.out.println("Hello, World!"); + } +} From 3167b05e36b8e8dfb9e0bdec57ca3418aacd7784 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 15:09:09 +0530 Subject: [PATCH 03/14] Create hello1.py Python program for hello world --- Python/hello1.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 Python/hello1.py diff --git a/Python/hello1.py b/Python/hello1.py new file mode 100644 index 0000000..ec7780c --- /dev/null +++ b/Python/hello1.py @@ -0,0 +1 @@ +print('Hello, world!') From 22bc2366c925d85c19671bbea1f02dda674888f3 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 15:38:00 +0530 Subject: [PATCH 04/14] Create Hello1.java --- Java/Hello1.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Java/Hello1.java diff --git a/Java/Hello1.java b/Java/Hello1.java new file mode 100644 index 0000000..132c270 --- /dev/null +++ b/Java/Hello1.java @@ -0,0 +1,5 @@ +class Hello1 { + public static void main(String[] args) { + System.out.println("Hello, World!"); + } +} From a7f9c14c7f46a929de38ba771a49ca0b51bc625e Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 15:49:05 +0530 Subject: [PATCH 05/14] Create Hello.go Hello world in Go Language --- GoLang/Hello.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 GoLang/Hello.go diff --git a/GoLang/Hello.go b/GoLang/Hello.go new file mode 100644 index 0000000..87595e3 --- /dev/null +++ b/GoLang/Hello.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("hello world") +} From b423a5580426d5de73ea6ce6af4e5cd196d87102 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 16:26:28 +0530 Subject: [PATCH 06/14] Update Hello.go Updated hello.go --- GoLang/Hello.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GoLang/Hello.go b/GoLang/Hello.go index 87595e3..e7b5bbd 100644 --- a/GoLang/Hello.go +++ b/GoLang/Hello.go @@ -3,5 +3,5 @@ package main import "fmt" func main() { - fmt.Println("hello world") + fmt.Println("hello world!!! GoLang program") } From 945adab6511184ae44696d4f388102fe029bd017 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 16:28:48 +0530 Subject: [PATCH 07/14] Create hello.rb Ruby Hello World Program --- Ruby/hello.rb | 1 + 1 file changed, 1 insertion(+) create mode 100644 Ruby/hello.rb diff --git a/Ruby/hello.rb b/Ruby/hello.rb new file mode 100644 index 0000000..b85a042 --- /dev/null +++ b/Ruby/hello.rb @@ -0,0 +1 @@ +puts "Hello World" From 3ef31a6bcac5827fb8cc41a260889a5df7410be7 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 18:42:42 +0530 Subject: [PATCH 08/14] Changing Hello1.java --- Java/Hello1.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Java/Hello1.java b/Java/Hello1.java index 132c270..fd68115 100644 --- a/Java/Hello1.java +++ b/Java/Hello1.java @@ -1,5 +1,5 @@ class Hello1 { public static void main(String[] args) { - System.out.println("Hello, World!"); + System.out.println("Hello, World in Java!"); } } From 174a2ec0ff9f2a8dd122e7cdf6fc86793e2d1184 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 19:25:11 +0530 Subject: [PATCH 09/14] Java commit --- Java/Hello1.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Java/Hello1.java b/Java/Hello1.java index fd68115..9e4447e 100644 --- a/Java/Hello1.java +++ b/Java/Hello1.java @@ -1,5 +1,5 @@ class Hello1 { public static void main(String[] args) { - System.out.println("Hello, World in Java!"); + System.out.println("Hello, World!!!"); } } From b7541e284967cbf58f8dc9805faa9f162b7c8a02 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 19:47:39 +0530 Subject: [PATCH 10/14] Hello World in Perl --- perl/hello.pl | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 perl/hello.pl diff --git a/perl/hello.pl b/perl/hello.pl new file mode 100644 index 0000000..430d038 --- /dev/null +++ b/perl/hello.pl @@ -0,0 +1,8 @@ +#!/usr/bin/perl + +# Modules used +use strict; +use warnings; + +# Print function +print("Hello World\n"); From ed8d176f81f4e0c209ba251cb26f736e66c69509 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 19:52:06 +0530 Subject: [PATCH 11/14] Hello World in Perl --- perl/hello.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl/hello.pl b/perl/hello.pl index 430d038..0a64b03 100644 --- a/perl/hello.pl +++ b/perl/hello.pl @@ -5,4 +5,4 @@ use warnings; # Print function -print("Hello World\n"); +print("Hello World, This is Perl\n"); From 3454ce6c8f8cf3a2707415fc98e7cc69c75a4b10 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 19:59:14 +0530 Subject: [PATCH 12/14] Hello World in Perl --- perl/{hello.pl => hello1.pl} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename perl/{hello.pl => hello1.pl} (67%) diff --git a/perl/hello.pl b/perl/hello1.pl similarity index 67% rename from perl/hello.pl rename to perl/hello1.pl index 0a64b03..430d038 100644 --- a/perl/hello.pl +++ b/perl/hello1.pl @@ -5,4 +5,4 @@ use warnings; # Print function -print("Hello World, This is Perl\n"); +print("Hello World\n"); From b52d6e977575613f230424b75e7140c7317fe771 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 21:08:36 +0530 Subject: [PATCH 13/14] Hello World in Perl --- perl/{hello.pl => hello1.pl} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename perl/{hello.pl => hello1.pl} (67%) diff --git a/perl/hello.pl b/perl/hello1.pl similarity index 67% rename from perl/hello.pl rename to perl/hello1.pl index 0a64b03..430d038 100644 --- a/perl/hello.pl +++ b/perl/hello1.pl @@ -5,4 +5,4 @@ use warnings; # Print function -print("Hello World, This is Perl\n"); +print("Hello World\n"); From ebf11552d3f0734c0607fc89ebbcc75283afe409 Mon Sep 17 00:00:00 2001 From: smrpa01 Date: Sun, 25 Oct 2020 21:17:44 +0530 Subject: [PATCH 14/14] Added Perl file --- perl/{hello1.pl => hello2.pl} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename perl/{hello1.pl => hello2.pl} (76%) diff --git a/perl/hello1.pl b/perl/hello2.pl similarity index 76% rename from perl/hello1.pl rename to perl/hello2.pl index 430d038..5076bec 100644 --- a/perl/hello1.pl +++ b/perl/hello2.pl @@ -5,4 +5,4 @@ use warnings; # Print function -print("Hello World\n"); +print("Hello World\n"); \ No newline at end of file