Added final assignment

This commit is contained in:
Christopher Sanden
2025-11-13 12:44:46 +01:00
parent 4c6e3d0905
commit ae8a53e16b
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 4.0)
project(TheAlgoeithmicOrganizer)
set(CMAKE_CXX_STANDARD 20)
add_executable(TheAlgoeithmicOrganizer main.cpp)

View File

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