08/27/2018
Who in their right mind would come up with the syntax for raw strings in C++?!?
I recently had to use the raw string syntax (defining a #define from solution variable). I mean, seriously WTF:
R"("blahblah\blah")"
Compare this to C#:
@"blahblah\blah"
C++ is becoming a mess of a language.