Skip to content

Commit 84e6e9d

Browse files
committed
feat
1 parent 38180fb commit 84e6e9d

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

Tests/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
cmake_minimum_required(VERSION 3.17)
2+
project(CTest)
3+
4+
set(CMAKE_CXX_STANDARD 14)
5+
6+
add_executable(CTest main.cpp)

Tests/test.cpp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// Created by admin on 2021/2/6.
3+
//
4+
#include<stdio.h>
5+
6+
int main() {
7+
printf("hello world!\n");
8+
printf("hello world!\n");
9+
printf("hello world!\n");
10+
11+
printf("hello world!\n");
12+
return 0;
13+
}

0 commit comments

Comments
 (0)