summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/README.md b/README.md
index ed2e6ea..1f480ca 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,17 @@
-# Hello World C++ Program
+# Hello World in C++
-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 that prints "Hello World" to the console. It demonstrates the minimal structure of a C++ program with a main function and standard output.
## Requirements
-- C++ compiler (g++, clang++, or any standard C++ compiler)
-- C++11 or later (though this simple program works with earlier standards)
+- 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++