first run structure

This commit is contained in:
Stedd 2024-12-01 12:09:27 +01:00
parent e0d65521c0
commit 5fd685cc55
3 changed files with 17 additions and 7 deletions

View File

@ -3,3 +3,11 @@
//
#include "day01.h"
#include <iostream>
#include <ostream>
void day01::Run()
{
std::cout << "Day 01" << std::endl;
}

View File

@ -6,11 +6,11 @@
#define DAY01_H
class day01 {
class day01
{
public:
static void Run();
};
#endif //DAY01_H

View File

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