fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. // Prints "Hello, World!" to the console
  5. std::cout << "Hello, World!" << std::endl;
  6.  
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
Hello, World!