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 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; +} 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 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 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"])