This commit is contained in:
2024-04-23 09:26:29 +02:00
parent fea266c06d
commit c4d72c22e2
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.28)
project(estimation_points)
set(CMAKE_CXX_STANDARD 17)
add_executable(estimation_points 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;
}