fork(21) download
  1. #include <iostream>
  2.  
  3. struct Foobar
  4. {
  5. int foo;
  6. float bar;
  7. };
  8.  
  9. namespace
  10. {
  11.  
  12. struct Foobar
  13. {
  14. double baz;
  15. };
  16.  
  17. } // namespace
  18.  
  19. int main()
  20. {
  21. std::cout << "HELLO!\n";
  22. }
  23.  
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
HELLO!