From a0a48a21b5201eb3ef6fdce70225d280cd371863 Mon Sep 17 00:00:00 2001 From: Byte Bender <136265142+BYT-Bender@users.noreply.github.com> Date: Wed, 2 Oct 2024 14:08:39 +0530 Subject: [PATCH 1/4] Add files via upload Hello World in C# --- hello_world.cs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 hello_world.cs diff --git a/hello_world.cs b/hello_world.cs new file mode 100644 index 0000000..b9e8a63 --- /dev/null +++ b/hello_world.cs @@ -0,0 +1,7 @@ +using System; + +public class HelloWorld { + public static void Main(string[] args) { + Console.WriteLine("Hello, World!"); + } +} \ No newline at end of file From 66936abaf3de004e7734a3df9772e5049088e583 Mon Sep 17 00:00:00 2001 From: Byte Bender <136265142+BYT-Bender@users.noreply.github.com> Date: Wed, 2 Oct 2024 14:11:13 +0530 Subject: [PATCH 2/4] Add files via upload Hello World in C++ --- hello_world.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 hello_world.cpp diff --git a/hello_world.cpp b/hello_world.cpp new file mode 100644 index 0000000..14b39e8 --- /dev/null +++ b/hello_world.cpp @@ -0,0 +1,7 @@ +#include +using namespace std; + +int main() { + cout << "Hello, World!"; + return 0; +} \ No newline at end of file From 4cd1178f2c1f0223a16b5f462525ca9909f177d5 Mon Sep 17 00:00:00 2001 From: Byte Bender <136265142+BYT-Bender@users.noreply.github.com> Date: Wed, 2 Oct 2024 14:11:34 +0530 Subject: [PATCH 3/4] Add files via upload Hello World in Java --- hello_world.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hello_world.java diff --git a/hello_world.java b/hello_world.java new file mode 100644 index 0000000..4c72039 --- /dev/null +++ b/hello_world.java @@ -0,0 +1,5 @@ +class hello_world { + public static void main(String args[]) { + System.out.println("Hello, World!"); + } +} \ No newline at end of file From a2188d5e7f0a62d8a45a0c326ca1832b5602dc60 Mon Sep 17 00:00:00 2001 From: Byte Bender <136265142+BYT-Bender@users.noreply.github.com> Date: Wed, 2 Oct 2024 18:18:00 +0530 Subject: [PATCH 4/4] Delete hello_world.java --- hello_world.java | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 hello_world.java diff --git a/hello_world.java b/hello_world.java deleted file mode 100644 index 4c72039..0000000 --- a/hello_world.java +++ /dev/null @@ -1,5 +0,0 @@ -class hello_world { - public static void main(String args[]) { - System.out.println("Hello, World!"); - } -} \ No newline at end of file