commit 6721d6ee706fe3eea2b1ab3caf30b4610894ca66 Author: unknown Date: Fri Nov 22 11:19:47 2024 +0100 xd diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..1f98179 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.29) +project(123) + +set(CMAKE_CXX_STANDARD 20) + +add_executable(123 main.cpp) 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; +}