Guest User

Untitled

a guest
Sep 29th, 2016
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #include <GLFW/glfw3.h>
  2. #include <thread>
  3.  
  4. int main()
  5. {
  6.     glfwInit();
  7.     std::this_thread::sleep_for(std::chrono::seconds(1));
  8.     glfwTerminate();
  9. }
Advertisement
Add Comment
Please, Sign In to add comment