AOC24/main.cpp

9 lines
76 B
C++

#include <iostream>
#include "days/day01.h"
int main()
{
day01::Run();
}