From 497de9e7c3245032a87d90150b0be790d9edc89b Mon Sep 17 00:00:00 2001 From: cat Date: Tue, 6 Jan 2026 19:38:23 +0200 Subject: [PATCH] Added an example program --- main.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 main.cpp diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..1d75a45 --- /dev/null +++ b/main.cpp @@ -0,0 +1,7 @@ +#include + +int main() { + std::cout << "Hello world" << std::endl; + + return 0; +}