Is there anyway to do something like PHP\'s
print << END yadayadayada END;
in C++? (multi-line, unescaped, easy-to-cut-and-paste stre
If I understand you correctly, I believe you want this:
#include ... std::cout << std::endl << "yadayadayada" << std::endl;