1std::string firstWay =
2 "This text is pretty long, but will be "
3 "concatenated into just a single string. "
4 "The disadvantage is that you have to quote "
5 "each part, and newlines must be literal as "
6 "usual.";
7
8//or you can place a \ char just before the end of the line
9std::string secondWay =
10 "Here, on the other hand, I've gone crazy \
11and really let the literal span several lines, \
12without bothering with quoting each line's \
13content. This works, but you can't indent."