fork(1) download
  1. #include <iostream>
  2.  
  3. struct HelloWorld {
  4. void operator()() const
  5. {
  6. std::cout << "hello world\n";
  7. }
  8. };
  9.  
  10. int main()
  11. {
  12. HelloWorld{}();
  13. }
  14.  
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
hello world