From 238b86eeeb3bfb4e6dbae8f038c27958bd775329 Mon Sep 17 00:00:00 2001 From: thegezy Date: Mon, 7 Oct 2019 15:06:44 +0100 Subject: [PATCH 1/3] I wrote Hello World in java --- java/HelloApp.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 java/HelloApp.java diff --git a/java/HelloApp.java b/java/HelloApp.java new file mode 100644 index 0000000..75d9dc6 --- /dev/null +++ b/java/HelloApp.java @@ -0,0 +1,5 @@ +public class HelloApp{ + public static void main(String[] args) { + System.out.println("Hello World!"); + } +} \ No newline at end of file From 992228d3dd1c5c93c0481d0e72777cff6d79cb10 Mon Sep 17 00:00:00 2001 From: thegezy Date: Mon, 7 Oct 2019 15:39:09 +0100 Subject: [PATCH 2/3] I added Hello World in two other foreign languages --- python/hello_world_in_other_languages.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/python/hello_world_in_other_languages.py b/python/hello_world_in_other_languages.py index 9eef602..78ad0e6 100644 --- a/python/hello_world_in_other_languages.py +++ b/python/hello_world_in_other_languages.py @@ -1,2 +1,12 @@ -language = {"en":"hello world", "tr":"merhaba dünya"} -print(language["tr"]) \ No newline at end of file +g = "مرحبا بكم" +language = {"en":"hello world", "tr":"merhaba dünya", "hau":"Barka da Zuwa!" + "ara":g} +print(language["tr"]) + +#hello world in HAUSA language +print(language["hau"]) + + #العربية +#بلغة +#hello world in ARABIC language +print(language["ara"]) From 8d2bddba86d91feaa0a47cccbfda5a624856dca8 Mon Sep 17 00:00:00 2001 From: thegezy Date: Mon, 7 Oct 2019 20:53:46 +0100 Subject: [PATCH 3/3] I wrote hello world in HTML --- html/hello_world.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 html/hello_world.html diff --git a/html/hello_world.html b/html/hello_world.html new file mode 100644 index 0000000..65bc956 --- /dev/null +++ b/html/hello_world.html @@ -0,0 +1,14 @@ + + + + Hello World + + + +

HELLO WORLD

+ + \ No newline at end of file