This commit is contained in:
unknown 2024-11-22 11:19:47 +01:00
commit 6721d6ee70
2 changed files with 12 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.29)
project(123)
set(CMAKE_CXX_STANDARD 20)
add_executable(123 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;
}