advent_of_code/2021/misc/day.cpp.template

24 lines
399 B
Text
Raw Normal View History

/*****************************
*
* Copyright (c) 2020 Gnarwhal
*
*****************************/
#include <vector>
#include <string>
#include <iostream>
#include <fstream>
#include "../misc/types.hpp"
#include "../misc/print.hpp"
auto current_day() -> void {
{
auto line = std::string();
auto file = std::ifstream("inputs/current_day.input");
while (getline(file, line)) {
}
}
}