feat: First program

This commit is contained in:
2024-07-02 13:05:42 +02:00
parent 1c1519edb7
commit ab106d3e59
13 changed files with 86 additions and 0 deletions

6
level_1/CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.28)
project(level_1)
set(CMAKE_CXX_STANDARD 17)
add_executable(level_1 main.cpp)