This commit is contained in:
OSK\schmidt
2024-12-04 09:02:24 +01:00
parent bef17c860e
commit 18e080b27d
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/.idea/
/cmake-build-debug/

6
CMakeLists.txt Normal file
View File

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