fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void a() {
  5. cout << "a!";
  6. }
  7.  
  8. void b() {
  9. cout << "b!";
  10. }
  11.  
  12. int main() {
  13. bool which = true;
  14.  
  15. which ? a() : b();
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
a!