23 lines
399 B
Text
23 lines
399 B
Text
/*****************************
|
|
*
|
|
* 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)) {
|
|
|
|
}
|
|
}
|
|
}
|