11 lines
230 B
C++
11 lines
230 B
C++
#include <fstream>
|
|
#include <vector>
|
|
|
|
#include "fmt/format.h"
|
|
|
|
auto main([[maybe_unused]]int argc, [[maybe_unused]]char const* argv[]) -> int {
|
|
std::fstream strm{"./data/2024/day01/sample.txt", std::ios::in};
|
|
|
|
return 0;
|
|
}
|