Is there anyway to do something like PHP\'s
print << END yadayadayada END;
in C++? (multi-line, unescaped, easy-to-cut-and-paste stre
You can do like this:
std::cout << "First line\n" "second line\n" "third line\n" ;
And that's the best you can do with C++.