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 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