#include "MainLoop.h" int main() { try { MainLoop main_loop; return main_loop.run(); } catch (const std::exception& ex) { std::cerr << "Error: " << ex.what() << std::endl; } return 1; }