From 5233e72a88da94f54a1282fdb12adcca285717b3 Mon Sep 17 00:00:00 2001 From: ilsix Date: Thu, 4 Apr 2024 20:16:51 +0200 Subject: [PATCH] Untested C++ --- c++/helloworld.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 c++/helloworld.cpp diff --git a/c++/helloworld.cpp b/c++/helloworld.cpp new file mode 100644 index 0000000..1101dc8 --- /dev/null +++ b/c++/helloworld.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "Hello World!\n"; + return 0; +} \ No newline at end of file