Compare commits

..

No commits in common. "5fd685cc5596474ff3b17e79b0aa59c75974401a" and "d2007f41da7d3c1702de1db57a78d7e11dd85e50" have entirely different histories.

4 changed files with 4 additions and 37 deletions

View File

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

View File

@ -1,13 +0,0 @@
//
// Created by stedd on 01.12.24.
//
#include "day01.h"
#include <iostream>
#include <ostream>
void day01::Run()
{
std::cout << "Day 01" << std::endl;
}

View File

@ -1,16 +0,0 @@
//
// Created by stedd on 01.12.24.
//
#ifndef DAY01_H
#define DAY01_H
class day01
{
public:
static void Run();
};
#endif //DAY01_H

View File

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