fork download
  1. #include <string>
  2. #include <iostream>
  3.  
  4. #define HELLO "Hello"
  5.  
  6. const std::string Goodbye("HELLO world!");
  7.  
  8. int main(int argc, char **argv)
  9. {
  10. std::cout << Goodbye << '\n';
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 3016KB
stdin
Standard input is empty
stdout
HELLO world!