From 933a02f224be8086586edd35f0f43a3314718fb5 Mon Sep 17 00:00:00 2001 From: Marcus Dicander Date: Sat, 22 Feb 2025 13:41:28 +0100 Subject: [PATCH] First commit --- helloworld.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 helloworld.cpp diff --git a/helloworld.cpp b/helloworld.cpp new file mode 100644 index 0000000..c53834b --- /dev/null +++ b/helloworld.cpp @@ -0,0 +1,7 @@ +#include +using namespace std; + + +int main() { + std::cout << "Hello, World!" << std::endl; +} \ No newline at end of file