From e52925b83f4d1ecaade6d4db24aafab758e1c756 Mon Sep 17 00:00:00 2001 From: Preet Ojha Date: Sun, 3 Oct 2021 15:45:18 +0530 Subject: [PATCH 01/11] Ruby Language Added --- Ruby/Hello.rb | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Ruby/Hello.rb diff --git a/Ruby/Hello.rb b/Ruby/Hello.rb new file mode 100644 index 0000000..2e3abe8 --- /dev/null +++ b/Ruby/Hello.rb @@ -0,0 +1,3 @@ +puts "Hello World In Ruby Language" +puts "By Preet Ojha" + From f0ad35a5850682bb93df2566ba861b564c9db387 Mon Sep 17 00:00:00 2001 From: Preet Ojha Date: Sun, 3 Oct 2021 15:51:32 +0530 Subject: [PATCH 02/11] Added Goovy Language --- Groovy/hello_world.groovy | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Groovy/hello_world.groovy diff --git a/Groovy/hello_world.groovy b/Groovy/hello_world.groovy new file mode 100644 index 0000000..eb0eb0c --- /dev/null +++ b/Groovy/hello_world.groovy @@ -0,0 +1,2 @@ +println "Hello World In Goovy Language" +println "By Preet Ojha" \ No newline at end of file From 253fff17c4028b85875dbc384d3c8feeb110e1cd Mon Sep 17 00:00:00 2001 From: Preet Ojha Date: Sun, 3 Oct 2021 15:59:34 +0530 Subject: [PATCH 03/11] Added Scala language --- Ruby/{Hello.rb => hello_world.rb} | 0 Scala/hello_world.scala | 9 +++++++++ 2 files changed, 9 insertions(+) rename Ruby/{Hello.rb => hello_world.rb} (100%) create mode 100644 Scala/hello_world.scala diff --git a/Ruby/Hello.rb b/Ruby/hello_world.rb similarity index 100% rename from Ruby/Hello.rb rename to Ruby/hello_world.rb diff --git a/Scala/hello_world.scala b/Scala/hello_world.scala new file mode 100644 index 0000000..f356dd4 --- /dev/null +++ b/Scala/hello_world.scala @@ -0,0 +1,9 @@ +object Objectname +{ + def main(args: Array[String]) + { + println("Hello World In Scala Language") + println("By Preet Ojha") + } +} + From ae68136d6de149707da12d1719fed8f57e5355a6 Mon Sep 17 00:00:00 2001 From: Preet Ojha Date: Sun, 3 Oct 2021 16:01:18 +0530 Subject: [PATCH 04/11] Added Ruby Language --- Ruby/hello_world.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ruby/hello_world.rb b/Ruby/hello_world.rb index 2e3abe8..b31debc 100644 --- a/Ruby/hello_world.rb +++ b/Ruby/hello_world.rb @@ -1,3 +1,3 @@ puts "Hello World In Ruby Language" -puts "By Preet Ojha" +puts "By Preet Ojha " From 07c2194b52c0c64316f6af4ebb9a93e546f5e979 Mon Sep 17 00:00:00 2001 From: Preet Ojha Date: Sun, 3 Oct 2021 16:05:26 +0530 Subject: [PATCH 05/11] Added Swift Language --- Swift/hello_world.swift | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Swift/hello_world.swift diff --git a/Swift/hello_world.swift b/Swift/hello_world.swift new file mode 100644 index 0000000..5589ba6 --- /dev/null +++ b/Swift/hello_world.swift @@ -0,0 +1,2 @@ +print("Hello World In Swift Language") +print("By Preet Ojha") \ No newline at end of file From 5c678d5ad95b9bcf1de1ed3b187950936096c149 Mon Sep 17 00:00:00 2001 From: Preet Ojha Date: Sun, 3 Oct 2021 16:08:27 +0530 Subject: [PATCH 06/11] Commit --- Groovy/hello_world.groovy | 2 +- Ruby/hello_world.rb | 4 ++-- Scala/hello_world.scala | 4 ++-- Swift/hello_world.swift | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Groovy/hello_world.groovy b/Groovy/hello_world.groovy index eb0eb0c..c5da24d 100644 --- a/Groovy/hello_world.groovy +++ b/Groovy/hello_world.groovy @@ -1,2 +1,2 @@ -println "Hello World In Goovy Language" +println "Hello World In Goovy Language." println "By Preet Ojha" \ No newline at end of file diff --git a/Ruby/hello_world.rb b/Ruby/hello_world.rb index b31debc..6e6b6ed 100644 --- a/Ruby/hello_world.rb +++ b/Ruby/hello_world.rb @@ -1,3 +1,3 @@ -puts "Hello World In Ruby Language" -puts "By Preet Ojha " +puts "Hello World In Ruby Language." +puts "By Preet Ojha" diff --git a/Scala/hello_world.scala b/Scala/hello_world.scala index f356dd4..e9b5104 100644 --- a/Scala/hello_world.scala +++ b/Scala/hello_world.scala @@ -2,8 +2,8 @@ object Objectname { def main(args: Array[String]) { - println("Hello World In Scala Language") - println("By Preet Ojha") + println("Hello World In Scala Language.") + println("By Preet Ojha") } } diff --git a/Swift/hello_world.swift b/Swift/hello_world.swift index 5589ba6..26af4eb 100644 --- a/Swift/hello_world.swift +++ b/Swift/hello_world.swift @@ -1,2 +1,2 @@ -print("Hello World In Swift Language") +print("Hello World In Swift Language.") print("By Preet Ojha") \ No newline at end of file From c170f30f7cea42a5f8db45af05d4e3c80c117fc3 Mon Sep 17 00:00:00 2001 From: Preet Ojha Date: Sun, 3 Oct 2021 16:09:17 +0530 Subject: [PATCH 07/11] Hello World in Goovy Language --- Groovy/hello_world.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Groovy/hello_world.groovy b/Groovy/hello_world.groovy index c5da24d..ceeb274 100644 --- a/Groovy/hello_world.groovy +++ b/Groovy/hello_world.groovy @@ -1,2 +1,2 @@ -println "Hello World In Goovy Language." +println "Hello World In The Goovy Language." println "By Preet Ojha" \ No newline at end of file From 63ffbc7e14040f10e3515c7dd641d121011b114d Mon Sep 17 00:00:00 2001 From: Preet Ojha Date: Sun, 3 Oct 2021 16:09:59 +0530 Subject: [PATCH 08/11] Hello World In Ruby Language --- Ruby/hello_world.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ruby/hello_world.rb b/Ruby/hello_world.rb index 6e6b6ed..45686c2 100644 --- a/Ruby/hello_world.rb +++ b/Ruby/hello_world.rb @@ -1,3 +1,3 @@ -puts "Hello World In Ruby Language." +puts "Hello World In The Ruby Language." puts "By Preet Ojha" From bf156c09f29c90a9c4208ed9863454ad87112925 Mon Sep 17 00:00:00 2001 From: Preet Ojha Date: Sun, 3 Oct 2021 16:10:22 +0530 Subject: [PATCH 09/11] Hello World In Scala Language --- Scala/hello_world.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scala/hello_world.scala b/Scala/hello_world.scala index e9b5104..8ae3db5 100644 --- a/Scala/hello_world.scala +++ b/Scala/hello_world.scala @@ -2,7 +2,7 @@ object Objectname { def main(args: Array[String]) { - println("Hello World In Scala Language.") + println("Hello World In The Scala Language.") println("By Preet Ojha") } } From 0f1cec8cd98e4117a497f3be579d4577020d27ef Mon Sep 17 00:00:00 2001 From: Preet Ojha Date: Sun, 3 Oct 2021 16:10:48 +0530 Subject: [PATCH 10/11] Hello World In Swift Language --- Swift/hello_world.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Swift/hello_world.swift b/Swift/hello_world.swift index 26af4eb..afbe607 100644 --- a/Swift/hello_world.swift +++ b/Swift/hello_world.swift @@ -1,2 +1,2 @@ -print("Hello World In Swift Language.") +print("Hello World In The Swift Language.") print("By Preet Ojha") \ No newline at end of file From 9609396d0e7604cc9d111a1adf7ae0ae4c2e1ffb Mon Sep 17 00:00:00 2001 From: Preet Ojha Date: Sun, 3 Oct 2021 16:14:07 +0530 Subject: [PATCH 11/11] Hello World In Groovy Language --- Groovy/hello_world.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Groovy/hello_world.groovy b/Groovy/hello_world.groovy index ceeb274..4d7feae 100644 --- a/Groovy/hello_world.groovy +++ b/Groovy/hello_world.groovy @@ -1,2 +1,2 @@ -println "Hello World In The Goovy Language." +println "Hello World In The Groovy Language." println "By Preet Ojha" \ No newline at end of file