创建实验二项目
This commit is contained in:
@@ -0,0 +1,6 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.29)
|
||||||
|
project(homework2)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_STANDARD 20)
|
||||||
|
|
||||||
|
add_executable(homework2 main.cpp)
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::cout << "Hello, World!" << std::endl;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user