From d68792480057cfd1326e86b85c6ddd5eff25767c Mon Sep 17 00:00:00 2001 From: Vinicius Mangueira <32227073+ViniciusDeep@users.noreply.github.com> Date: Tue, 1 Oct 2019 04:23:00 -0300 Subject: [PATCH 1/9] Create hello.c --- hello.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..2f3c1bf --- /dev/null +++ b/hello.c @@ -0,0 +1,9 @@ +#include + +int main { + + printf("Hello world") + + return 0; + +} From 1687137b364586ac28dce89081fb7c6c5763101c Mon Sep 17 00:00:00 2001 From: Vinicius Mangueira <32227073+ViniciusDeep@users.noreply.github.com> Date: Tue, 1 Oct 2019 04:26:37 -0300 Subject: [PATCH 2/9] Create hello.swift --- hello.swift | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello.swift diff --git a/hello.swift b/hello.swift new file mode 100644 index 0000000..58d1c87 --- /dev/null +++ b/hello.swift @@ -0,0 +1,6 @@ +enum Gretting:String, CaseIterable { + case hello = "Hello World" + case goodMorning = "Good Morning" +} + +Gretting.allCases.forEach({print($0.rawValue)}) From 802fd90f282917d80f9932f83015d435d53b3af7 Mon Sep 17 00:00:00 2001 From: Vinicius Mangueira <32227073+ViniciusDeep@users.noreply.github.com> Date: Tue, 1 Oct 2019 04:27:44 -0300 Subject: [PATCH 3/9] Create hello.py --- hello.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello.py diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..44159b3 --- /dev/null +++ b/hello.py @@ -0,0 +1 @@ +print("Hello world") From e1fd9d225b20fbd4bfd9e44c8b2955f31286cc5c Mon Sep 17 00:00:00 2001 From: Vinicius Mangueira <32227073+ViniciusDeep@users.noreply.github.com> Date: Tue, 1 Oct 2019 04:31:01 -0300 Subject: [PATCH 4/9] Create hello.dart --- hello.dart | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 hello.dart diff --git a/hello.dart b/hello.dart new file mode 100644 index 0000000..800db1c --- /dev/null +++ b/hello.dart @@ -0,0 +1,3 @@ +main() { + print("Hello, World!"); +} From 7fef497bd8dd9ed2bb5cf40eea03347d337c7a3a Mon Sep 17 00:00:00 2001 From: Guilherme Colombini Date: Tue, 1 Oct 2019 07:28:25 -0300 Subject: [PATCH 5/9] Create helloWorld.swift --- helloWorld.swift | 1 + 1 file changed, 1 insertion(+) create mode 100644 helloWorld.swift diff --git a/helloWorld.swift b/helloWorld.swift new file mode 100644 index 0000000..55b1747 --- /dev/null +++ b/helloWorld.swift @@ -0,0 +1 @@ +print("Hello world in Swift") From a8ae776f737e9220448f979b519e98b5418bf023 Mon Sep 17 00:00:00 2001 From: Guilherme Colombini Date: Tue, 1 Oct 2019 07:29:11 -0300 Subject: [PATCH 6/9] Create hello.python3 --- hello.python3 | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello.python3 diff --git a/hello.python3 b/hello.python3 new file mode 100644 index 0000000..fec4b7a --- /dev/null +++ b/hello.python3 @@ -0,0 +1 @@ +print("Hello world and python is awesoeme") From d3c147065c75f18e705c5f29a72ee1e9b701f492 Mon Sep 17 00:00:00 2001 From: Guilherme Colombini Date: Tue, 1 Oct 2019 07:29:48 -0300 Subject: [PATCH 7/9] Create helloWorld.dart --- helloWorld.dart | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 helloWorld.dart diff --git a/helloWorld.dart b/helloWorld.dart new file mode 100644 index 0000000..b8021b0 --- /dev/null +++ b/helloWorld.dart @@ -0,0 +1,4 @@ +main { +print("Hello") + +} From 926ead5a7ddb626be5344b9ad13c5a71ae62d9a5 Mon Sep 17 00:00:00 2001 From: Guilherme Colombini Date: Tue, 1 Oct 2019 07:30:36 -0300 Subject: [PATCH 8/9] Create hello.World.c++ --- hello.World.c++ | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello.World.c++ diff --git a/hello.World.c++ b/hello.World.c++ new file mode 100644 index 0000000..90ab37a --- /dev/null +++ b/hello.World.c++ @@ -0,0 +1 @@ +cout("Hello") From 3513cfedbf3a23589a563543e805010c46cd3e8e Mon Sep 17 00:00:00 2001 From: shrutika43 <51965695+shrutika43@users.noreply.github.com> Date: Thu, 3 Oct 2019 01:27:15 +0530 Subject: [PATCH 9/9] hello world c++ --- hello_world_shrutika43.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello_world_shrutika43.cpp diff --git a/hello_world_shrutika43.cpp b/hello_world_shrutika43.cpp new file mode 100644 index 0000000..f453e74 --- /dev/null +++ b/hello_world_shrutika43.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; +int main() +{ + cout<<("hello world!"); + return 0; +} +