fork download
  1. #include <iostream>
  2.  
  3. struct Foo {
  4. void((operator()))(){(((std::cout))<<((("OMG, it works\n"))));}
  5. void(((printit)))(){(((std::cout))<<(("((Parentheses))!\n")));}
  6. };
  7.  
  8. int ((((main)))) () {
  9. Foo Foo;
  10. (((((Foo)))()));
  11. (Foo).printit();
  12. return 0;
  13. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
OMG, it works
((Parentheses))!