blob: 30b64d9aa274e7eb398bdf16a4e80503536b7b90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "first_app.hpp"
#include <cstdlib>
#include <iostream>
#include <stdexcept>
int main() {
xe::FirstApp app{};
try {
app.run();
} catch (const std::exception &e) {
std::cerr << e.what() << '\n';
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
|