fork download
  1. #include <iostream>
  2.  
  3. #define QUOTEME(M) #M
  4. #define COMPOSE(A, B) QUOTEME(A) #B
  5.  
  6. #define SW_PREFIX XY2Ar-
  7. #define SW_FILE COMPOSE(SW_PREFIX, update)
  8.  
  9. int main()
  10. {
  11. std::cout << SW_FILE "\n";
  12. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
XY2Ar-update