From c4c808712ea07109312eb8069f9cca01ffe46a4b Mon Sep 17 00:00:00 2001 From: Bram van Bunnik Date: Tue, 16 Apr 2024 22:27:31 +0100 Subject: [PATCH] First commit --- src/main.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/main.cpp diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..0ca17cf --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,7 @@ +#include + +int main(int argc, char const *argv[]) +{ + std::cout << "Hello world"; + return 0; +}