From 34fabc122238bd8fbf5c5a63e31e88836056fcf4 Mon Sep 17 00:00:00 2001 From: arseney300 Date: Fri, 20 Feb 2026 03:53:55 +0000 Subject: add cpp hello world --- Makefile | 2 ++ main.cpp | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 Makefile create mode 100644 main.cpp diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..965ab88 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +all: + g++ main.cpp -o main.out diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..332383c --- /dev/null +++ b/main.cpp @@ -0,0 +1,4 @@ +#include +int main(){ + std::cout << "Hello world" << std::endl; +} -- cgit v1.2.3