summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdmin Panel <admin-panel@swave.lol>2026-03-08 10:01:58 +0000
committerAdmin Panel <admin-panel@swave.lol>2026-03-08 10:01:58 +0000
commitd13aedf4405e1900bfdc436069184c8d0008016b (patch)
tree63082e00257031ca220c6a21d7431ad747af2aa4
parent303f65bd3633a716fc100c1185717b071388adb4 (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 2c8cc7d..efe1e13 100644
--- a/README.md
+++ b/README.md
@@ -1,18 +1,18 @@
-# Hello World in C++
+# Hello World C++ Program
-A simple Hello World program written in C++.
+A simple "Hello World" program written in C++.
## Description
-This is a basic C++ program that demonstrates the minimal code required to print "Hello World" to the console. It's a traditional first program for learning a new programming language.
+This is a basic C++ program that demonstrates the minimal structure needed to create a working C++ application. The program outputs "Hello World" to the console and exits.
## Requirements
- C++ compiler (g++, clang++, or MSVC)
-- C++11 or later (though this simple program works with earlier standards)
+- C++11 or later standard (though this simple program works with earlier standards)
## Compilation
To compile the program, use one of the following commands:
-### Using g++:
+### Using g++