From 238b86eeeb3bfb4e6dbae8f038c27958bd775329 Mon Sep 17 00:00:00 2001 From: thegezy Date: Mon, 7 Oct 2019 15:06:44 +0100 Subject: [PATCH 1/5] 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/5] 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/5] 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 From 5280e58ac693b48fdc45cc073d6578dac867abc0 Mon Sep 17 00:00:00 2001 From: thegezy Date: Mon, 7 Oct 2019 21:15:49 +0100 Subject: [PATCH 4/5] Hello World in C++ with alert from the system bell --- c++/HELL0W0RLD.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 c++/HELL0W0RLD.cpp diff --git a/c++/HELL0W0RLD.cpp b/c++/HELL0W0RLD.cpp new file mode 100644 index 0000000..7be27e1 --- /dev/null +++ b/c++/HELL0W0RLD.cpp @@ -0,0 +1,11 @@ +#include +#include +//a hello world program that prints with an interval of 2.5 seconds +using namespace std; +int main(){ + cout<< " Hello \a"; + Sleep(2500); + cout<< " World \a"; + //this alerts the system bell + return 0; +} From f2af60e1ac9f465ce78cf9f0ab0cc0297d230b87 Mon Sep 17 00:00:00 2001 From: thegezy Date: Mon, 7 Oct 2019 21:36:43 +0100 Subject: [PATCH 5/5] A new folder with hello world program in Visual Basic --- Visual Basic/Visual Basic/vb.sln | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Visual Basic/Visual Basic/vb.sln diff --git a/Visual Basic/Visual Basic/vb.sln b/Visual Basic/Visual Basic/vb.sln new file mode 100644 index 0000000..58ae468 --- /dev/null +++ b/Visual Basic/Visual Basic/vb.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Visual Basic", "Visual Basic\Visual Basic.vcxproj", "{D6EEBDF2-A059-49F3-881A-E6ED471779C7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D6EEBDF2-A059-49F3-881A-E6ED471779C7}.Debug|Win32.ActiveCfg = Debug|Win32 + {D6EEBDF2-A059-49F3-881A-E6ED471779C7}.Debug|Win32.Build.0 = Debug|Win32 + {D6EEBDF2-A059-49F3-881A-E6ED471779C7}.Release|Win32.ActiveCfg = Release|Win32 + {D6EEBDF2-A059-49F3-881A-E6ED471779C7}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal