From eae59f72f55b2903d9cc9c7f97854999977dfb6e Mon Sep 17 00:00:00 2001 From: Admin Panel Date: Sun, 8 Mar 2026 09:53:18 +0000 Subject: feat: hello world [kanban #1] --- README.md | 13 +++++++++++++ hello.cpp | 6 ++++++ 2 files changed, 19 insertions(+) create mode 100644 README.md create mode 100644 hello.cpp diff --git a/README.md b/README.md new file mode 100644 index 0000000..350af6b --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Hello World C++ Program + +A simple C++ program that prints "Hello World" to the console. + +## Requirements + +- C++ compiler (g++, clang++, or any C++11 compatible compiler) + +## Compilation + +To compile the program, use one of the following commands: + +### Using g++ diff --git a/hello.cpp b/hello.cpp new file mode 100644 index 0000000..fa5c04d --- /dev/null +++ b/hello.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "Hello World" << std::endl; + return 0; +} -- cgit v1.2.3