From eec1a111d8f24b86f884cfe25fbfadc2adc7bd2c Mon Sep 17 00:00:00 2001 From: Juskcheck <114792624+Juskcheck@users.noreply.github.com> Date: Sun, 2 Oct 2022 19:30:55 +0530 Subject: [PATCH] Create abc_hello_world.cpp --- cpp/abc_hello_world.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 cpp/abc_hello_world.cpp diff --git a/cpp/abc_hello_world.cpp b/cpp/abc_hello_world.cpp new file mode 100644 index 0000000..90bb84a --- /dev/null +++ b/cpp/abc_hello_world.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main(){ + +cout << "hello world" << endl; +return 0; +}