summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 9909b48..96234f4 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,17 @@
-# Hello World C++ Program
+# Hello World in C++
-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 structure needed to create a working C++ application. The program prints "Hello World" to the console and exits.
+This is a basic C++ program that demonstrates the minimal code needed to output text to the console. It serves as a starting point for learning C++ programming.
## Requirements
-- C++ compiler (g++, clang++, or any C++ compiler that supports C++11 or later)
+- C++ compiler (g++, clang++, or any C++11 compatible compiler)
## Compilation
To compile the program, use one of the following commands:
-### Using g++:
+### Using g++