added day 1

This commit is contained in:
Stedd 2024-12-01 12:00:35 +01:00
parent d2007f41da
commit e0d65521c0
3 changed files with 24 additions and 1 deletions

View File

@ -3,4 +3,6 @@ project(AOC_24)
set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD 20)
add_executable(AOC_24 main.cpp) add_executable(AOC_24 main.cpp
days/day01.cpp
days/day01.h)

5
days/day01.cpp Normal file
View File

@ -0,0 +1,5 @@
//
// Created by stedd on 01.12.24.
//
#include "day01.h"

16
days/day01.h Normal file
View File

@ -0,0 +1,16 @@
//
// Created by stedd on 01.12.24.
//
#ifndef DAY01_H
#define DAY01_H
class day01 {
};
#endif //DAY01_H