summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdmin Panel <admin-panel@swave.lol>2026-03-08 10:05:15 +0000
committerAdmin Panel <admin-panel@swave.lol>2026-03-08 10:05:15 +0000
commit106e8579742737da478dc6791c47d295a652560d (patch)
treec320de0276b9958ca4b2ae29e0cab92c789ff60d
parent7a76b3a13e2585633376e0b8bba856e3203eef51 (diff)
feat: hello world [kanban #1]
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 72bdeb4..7bdcfab 100644
--- a/README.md
+++ b/README.md
@@ -1,18 +1,18 @@
# Hello World C++ Program
-A simple "Hello World" program written in C++.
+A simple C++ program that prints "Hello World" to the console.
## Description
-This is a basic C++ program that demonstrates the fundamental structure of a C++ application. It prints "Hello World" to the console and exits.
+This is a minimal C++ program demonstrating the basic structure of a C++ application. It includes the standard iostream library and uses `std::cout` to output text to the console.
## Requirements
-- A C++ compiler (g++, clang++, or MSVC)
-- C++11 or later (though this simple program works with older standards)
+- C++ compiler (g++, clang++, or any C++ standard-compliant compiler)
+- C++11 or later (though this simple program will work with older standards)
## Compilation
-To compile the program, use one of the following commands:
+To compile the program, use any of the following commands:
-### Using g++:
+### Using g++