summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdmin Panel <admin-panel@swave.lol>2026-03-08 10:02:45 +0000
committerAdmin Panel <admin-panel@swave.lol>2026-03-08 10:02:45 +0000
commitb552ba2ad92e3181d08ae581ca62fc12a3804758 (patch)
tree87261bfc4f79269d4865e96cd88636fa066d3a79
parentc7f30e3538ae1e86b5b42d03b65e034adae3c97d (diff)
feat: hello world [kanban #1]
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index aa8bea3..183b0fa 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 when executed.
+This is a basic C++ program demonstrating the minimal structure needed for a working C++ application. It uses the standard iostream library to output text to the console.
## Requirements
-- C++ compiler (g++, clang++, or any standard C++ compiler)
-- C++98 or later standard support
+- 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:
+To compile the program, use any of the following commands:
### Using g++