summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdmin Panel <admin-panel@swave.lol>2026-03-08 09:53:18 +0000
committerAdmin Panel <admin-panel@swave.lol>2026-03-08 09:53:18 +0000
commiteae59f72f55b2903d9cc9c7f97854999977dfb6e (patch)
treeb79c28f1e6c5e65f3e56f59f7a9db51c2f1c7a38
feat: hello world [kanban #1]
-rw-r--r--README.md13
-rw-r--r--hello.cpp6
2 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..350af6b
--- /dev/null
+++ b/README.md
@@ -0,0 +1,13 @@
+# Hello World C++ Program
+
+A simple C++ program that prints "Hello World" to the console.
+
+## Requirements
+
+- C++ compiler (g++, clang++, or any C++11 compatible compiler)
+
+## Compilation
+
+To compile the program, use one of the following commands:
+
+### Using g++
diff --git a/hello.cpp b/hello.cpp
new file mode 100644
index 0000000..fa5c04d
--- /dev/null
+++ b/hello.cpp
@@ -0,0 +1,6 @@
+#include <iostream>
+
+int main() {
+ std::cout << "Hello World" << std::endl;
+ return 0;
+}