From 5f8d996bf972fe10fa16c7895585a8858b88b2d8 Mon Sep 17 00:00:00 2001 From: Hasib Date: Tue, 30 Dec 2025 12:31:36 +0600 Subject: [PATCH] My first c++ code --- test.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test.cpp diff --git a/test.cpp b/test.cpp new file mode 100644 index 0000000..070e1c2 --- /dev/null +++ b/test.cpp @@ -0,0 +1,7 @@ +#include +using namespace std; + +int main() { + cout << "Hello, C++!" << endl; + return 0; +}