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