diff --git a/src/csharp/main.cs b/src/csharp/main.cs new file mode 100644 index 0000000..84de480 --- /dev/null +++ b/src/csharp/main.cs @@ -0,0 +1,10 @@ +using System; + +namespace HelloWorldApplication { + class HelloWorld { + static void Main(string[] args) { + Console.WriteLine("Hello World"); + Console.ReadKey(); + } + } +} \ No newline at end of file diff --git a/src/groovy/main.groovy b/src/groovy/main.groovy new file mode 100644 index 0000000..31665bf --- /dev/null +++ b/src/groovy/main.groovy @@ -0,0 +1 @@ +println "Hello World" \ No newline at end of file diff --git a/src/java/HelloWorld.java b/src/java/HelloWorld.java new file mode 100644 index 0000000..041c790 --- /dev/null +++ b/src/java/HelloWorld.java @@ -0,0 +1,7 @@ +public class HelloWorld +{ + public static void main (String[] args) + { + System.out.println("Hello World!"); + } +} \ No newline at end of file diff --git a/src/php/index.php b/src/php/index.php new file mode 100644 index 0000000..1ee81d3 --- /dev/null +++ b/src/php/index.php @@ -0,0 +1,9 @@ + + + + Hello world from PHP + + + Hello World

'; ?> + + \ No newline at end of file diff --git a/src/python/hello_world.py b/src/python/hello_world.py index 02dc1dc..3575d61 100755 --- a/src/python/hello_world.py +++ b/src/python/hello_world.py @@ -11,6 +11,8 @@ def create_hello(language="en"): "en": "Hello, World!", "de": "Hallo, Welt!", "tr": "Merhaba, Dünya!", + "fr": "Bonjour le monde", + "ar": "مرحبا بالعالم" } return hellos[language] diff --git a/src/rust/main.rs b/src/rust/main.rs new file mode 100644 index 0000000..009626e --- /dev/null +++ b/src/rust/main.rs @@ -0,0 +1,5 @@ + +// Hello world in Rust +fn main() { + println!("Hello World!"); +} \ No newline at end of file