summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAdmin Panel <admin-panel@swave.lol>2026-03-08 09:57:24 +0000
committerAdmin Panel <admin-panel@swave.lol>2026-03-08 09:57:24 +0000
commit60e6031d00f37513642c0fbd15920ad5335255c2 (patch)
treeb3e5dcb154e3861e2bd8c32126706a11b343e739 /README.md
parent7dc92bbb464de42508b5198272a3002c733599a2 (diff)
feat: hello world [kanban #1]
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 6 insertions, 7 deletions
diff --git a/README.md b/README.md
index 1ee3e28..20fd119 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,16 @@
-# Hello World C++
+# 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 classic "Hello World" output. It serves as a minimal example of a working C++ program.
+This is a basic C++ program demonstrating the minimal structure needed for a working C++ application. It uses the iostream library to output text to the standard output stream.
## 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 will work with older standards)
## Compilation
-To compile the program, use one of the following commands:
-
-### Using g++:
+### Using g++