fork download
  1. #include <iostream>
  2.  
  3. struct App
  4. {
  5. App() { std::cout << "hello world" << std::endl; }
  6. ~App() { std::cout << "goodbye world" << std::endl; }
  7. } s_app;
  8.  
  9.  
  10. int main() {}
Success #stdin #stdout 0s 2884KB
stdin
Standard input is empty
stdout
hello world
goodbye world