I'm Learning c++ , so pardon me
I'm trying to store a Raw String in C++ 
but i get ‘R’ was not declared in this scope
here is my code 
#include <iostream>
#include <string>
int main()
{
    std::string nx =R"('(;<\"/  )3-)";
    std::cout << nx;
}
and Here is a online compiler which compiles it without any problem
probably its something with my compiler im on ubuntu 15.10 and latest g++
 
     
    