summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/README.md b/README.md
index 20fd119..0a4f040 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,17 @@
# Hello World C++ Program
-A simple C++ program that prints "Hello World" to the console.
+A simple "Hello World" program written in C++.
## Description
-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.
+This is a basic C++ program that demonstrates the minimal structure needed to create a working C++ application. It prints "Hello World" to the console.
## Requirements
-- C++ compiler (g++, clang++, or MSVC)
-- C++11 or later (though this simple program will work with older standards)
+- C++ compiler (g++, clang++, or any C++11 compatible compiler)
## Compilation
-### Using g++
+To compile the program, use one of the following commands:
+
+### Using g++: