Added cin to hold the console at the end of execution

This commit is contained in:
Luke Else 2022-12-04 17:40:14 +00:00
parent 022b27d847
commit e563815306

View File

@ -1,4 +1,5 @@
#include "days/days.h"
#include <filesystem>
template <typename Output>
void runSolutions() {
@ -51,6 +52,9 @@ void runSolutions() {
//Free memory for heap allocated solution
delete solution;
//Hold the console
std::cin;
}
}