Skip to content

contribute to DB Systel Open Source Journey #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/csharp/main.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using System;

namespace HelloWorldApplication {
class HelloWorld {
static void Main(string[] args) {
Console.WriteLine("Hello World");
Console.ReadKey();
}
}
}
1 change: 1 addition & 0 deletions src/groovy/main.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
println "Hello World"
7 changes: 7 additions & 0 deletions src/java/HelloWorld.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
public class HelloWorld
{
public static void main (String[] args)
{
System.out.println("Hello World!");
}
}
9 changes: 9 additions & 0 deletions src/php/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Hello world from PHP</title>
</head>
<body>
<?php echo '<p>Hello World</p>'; ?>
</body>
</html>
2 changes: 2 additions & 0 deletions src/python/hello_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
5 changes: 5 additions & 0 deletions src/rust/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

// Hello world in Rust
fn main() {
println!("Hello World!");
}