From a2515e9c3d687dc65bcf8596d70d7e6a4d056ad2 Mon Sep 17 00:00:00 2001 From: jiacai Date: Sun, 25 Sep 2022 22:11:10 +0800 Subject: [PATCH] hello --- hello.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello.cpp diff --git a/hello.cpp b/hello.cpp new file mode 100644 index 0000000..73663d4 --- /dev/null +++ b/hello.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main() +{ + cout << "Hello World" << endl; + return 0; +}