首次提交

This commit is contained in:
2024-01-23 14:21:54 +08:00
parent 2a1ccebc6c
commit 5097161b53
3 changed files with 16 additions and 0 deletions

2
.gitignore vendored
View File

@@ -31,4 +31,6 @@
*.exe
*.out
*.app
cmake*
.idea

8
CMakeLists.txt Normal file
View File

@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.27)
project(Timer)
set(CMAKE_CXX_STANDARD 17)
add_executable(Timer
main.cpp
)

6
main.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}