1 #include <string> 2 3 int main() 4 { 5 std::wstring s(L"hello world! !"); 6 std::wstring S(L"!!!!"); 7 const wchar_t *mazeltov = L" "; 8 std::string q("hello world"); 9 std::string Q("quite a long std::strin with lots of info inside it"); 10 S.assign(L"!!!!!"); // Set break point at this line. 11 return 0; 12 }