From ace246db7b9ad82904655575a6e095dfcf56fa27 Mon Sep 17 00:00:00 2001 From: XiaoLFeng Date: Sat, 20 May 2023 17:55:10 +0800 Subject: [PATCH] Initial commit --- .gitignore | 2 ++ main.cpp | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 .gitignore create mode 100644 main.cpp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e30bef3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# 项目排除路径 +/cmake-build-debug/ \ No newline at end of file diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..bc8f460 --- /dev/null +++ b/main.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "Hello, World!" << std::endl; + return 0; +}