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