added day 1
This commit is contained in:
parent
d2007f41da
commit
e0d65521c0
|
@ -3,4 +3,6 @@ project(AOC_24)
|
|||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
|
||||
add_executable(AOC_24 main.cpp)
|
||||
add_executable(AOC_24 main.cpp
|
||||
days/day01.cpp
|
||||
days/day01.h)
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
//
|
||||
// Created by stedd on 01.12.24.
|
||||
//
|
||||
|
||||
#include "day01.h"
|
|
@ -0,0 +1,16 @@
|
|||
//
|
||||
// Created by stedd on 01.12.24.
|
||||
//
|
||||
|
||||
#ifndef DAY01_H
|
||||
#define DAY01_H
|
||||
|
||||
|
||||
|
||||
class day01 {
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif //DAY01_H
|
Loading…
Reference in New Issue