#include "first_app.hpp" // std #include #include #include int main() { hk::FirstApp app{}; try { app.run(); } catch(const std::exception& e) { std::cerr << e.what() << '\n'; } }