summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAdmin Panel <admin-panel@swave.lol>2026-03-08 09:54:01 +0000
committerAdmin Panel <admin-panel@swave.lol>2026-03-08 09:54:01 +0000
commit02877e2feb18f3c2f020944d307af867072d8f30 (patch)
tree1e3810716bade2bd827ddbd9ccc121b35e6a2a0c /README.md
parent60c2c486f29dc11cbcb5fae3cacc9e6b52057c68 (diff)
feat: hello world [kanban #1]
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 12 insertions, 5 deletions
diff --git a/README.md b/README.md
index de858db..3ed9c28 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,20 @@
# Hello World C++ Program
-A simple C++ program that outputs "Hello World" to the console.
+A simple C++ program that prints "Hello World" to the console.
+
+## Description
+
+This is a basic C++ program demonstrating the minimal structure needed for a working C++ application. It showcases:
+- Including the iostream header for input/output operations
+- The main function as the program entry point
+- Using `std::cout` for console output
+- Proper program termination with return code 0
## Requirements
-- C++ compiler (g++, clang++, or any C++11 compatible compiler)
+- C++ compiler (g++, clang++, or MSVC)
+- C++11 or later (though this simple program works with earlier standards)
## Compilation
-To compile the program, use one of the following commands:
-
-### Using g++:
+### Using g++ (Linux/macOS/Windows with MinGW)