An error occurred while loading the file. Please try again.
-
Adam Reese authoredUnverified6345f041
#include <Application/Application.h>
#include <iostream>
int main() {
try {
Application app;
return app.run();
}
catch (const std::exception& ex) {
std::cout << ex.what() << '\n';
return 1;
}
catch (...) {
std::cout << "Unknown exception\n";
return 2;
}
}