From 27244b028c401d301e3f318daca9db25c65f92cc Mon Sep 17 00:00:00 2001 From: ilsix Date: Thu, 4 Apr 2024 21:45:36 +0200 Subject: [PATCH] Tested C++ --- c++/helloworld.cpp | 1 + c++/test.sh | 3 +++ 2 files changed, 4 insertions(+) create mode 100755 c++/test.sh diff --git a/c++/helloworld.cpp b/c++/helloworld.cpp index 1101dc8..226a198 100644 --- a/c++/helloworld.cpp +++ b/c++/helloworld.cpp @@ -1,3 +1,4 @@ +//compiles and runs successfully #include int main() { diff --git a/c++/test.sh b/c++/test.sh new file mode 100755 index 0000000..f62c386 --- /dev/null +++ b/c++/test.sh @@ -0,0 +1,3 @@ +#!/bin/bash +g++ helloworld.cpp -o helloworld +./helloworld \ No newline at end of file