fork download
  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4.  
  5. int main()
  6. {
  7. std::cout << "Hello World!" << std::endl;
  8.  
  9. return EXIT_SUCCESS;
  10. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Hello World!