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"])