fork(2) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. string test = R"END(
  6. let's test a multiline string
  7. that can have special chars like ''
  8. or even ""
  9. and not to forget \
  10. and no need to escape!
  11. This rocks !)END";
  12. cout << test << endl;
  13. return 0;
  14. }
Success #stdin #stdout 0s 3272KB
stdin
Standard input is empty
stdout
		let's test a multiline string
		that can have special chars like ''
		or even ""
		and not to forget \
		and no need to escape!
		This rocks !