Skip to content

Instantly share code, notes, and snippets.

@theoremoon
Created January 12, 2015 05:19
Show Gist options
  • Save theoremoon/231194793626fb27106c to your computer and use it in GitHub Desktop.
Save theoremoon/231194793626fb27106c to your computer and use it in GitHub Desktop.
/*
* Raw String Literals use test.
* The result is
* This is a test string.
* Can this contain break line?
*
*/
#include <iostream>
using namespace std;
const char* str = R"(This is a test string.
Can this contain break line?)";
int main(){
cout << str << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment