fork(1) download
  1. #include <iostream>
  2.  
  3. void foo()
  4. {
  5. return;
  6. }
  7.  
  8. int main() {
  9. foo();
  10. std::cout << "Done!";
  11. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
Done!