From 7d8dcd7f1d40e44e64038de70a88b2ff4e0996d7 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; +}