From b14f8d595053bd415bede219723b71e7f4a22b9f Mon Sep 17 00:00:00 2001 From: Cat Flynn Date: Sun, 23 Jul 2023 16:45:15 +0200 Subject: [PATCH] feat: initial commit --- hello.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 hello.cpp diff --git a/hello.cpp b/hello.cpp new file mode 100644 index 0000000..df28b27 --- /dev/null +++ b/hello.cpp @@ -0,0 +1,7 @@ +#include + +int main() +{ + std::cout << "Hello, World!" << std::endl; + return 0; +} \ No newline at end of file