21 lines
263 B
C++
21 lines
263 B
C++
|
#include "first_app.hpp"
|
||
|
|
||
|
// std
|
||
|
#include <cstdlib>
|
||
|
#include <iostream>
|
||
|
#include <stdexcept>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
hk::FirstApp app{};
|
||
|
|
||
|
try
|
||
|
{
|
||
|
app.run();
|
||
|
}
|
||
|
catch(const std::exception& e)
|
||
|
{
|
||
|
std::cerr << e.what() << '\n';
|
||
|
}
|
||
|
|
||
|
}
|