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