Advertisement
Korotkodul

tic_tac_toe/main.cpp_7_заново

Nov 27th, 2024
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. #include <iostream>
  2. #include <sstream>
  3. #include <stdexcept>
  4. #include <string>
  5. #include <vector>
  6.  
  7. #include <FL/Fl.H>
  8. #include <FL/Fl_Window.H>
  9. #include <FL/Fl_Button.H>
  10.  
  11. #include <Graph_lib/Graph.h>
  12. #include <Graph_lib/Simple_window.h>
  13.  
  14. using namespace Graph_lib;
  15.  
  16.  
  17.  
  18. int main ()
  19. try
  20. {
  21.   std::cout << "EVERYTHINS HAS FALLEN\n";
  22. }
  23. catch (std::exception& e)
  24. {
  25.   std::cerr << e.what() << std::endl;
  26.   return 1;
  27. }
  28. catch (...)
  29. {
  30.   std::cerr << "Oops, something went wrong..." << std::endl;
  31.   return 2;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement