initial commit

This commit is contained in:
ackimixs
2024-03-26 21:37:51 +01:00
commit 8b64ee5bbf
2 changed files with 13 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

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

7
main.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include <iostream>
int main()
{
std::cout << "Hello, World!" << std::endl;
return 0;
}