Support for passing strings from D to R and vice versa.
string s = "Hello World"; Robj rs = RString(s); // rs can be passed to R as rs.robj Robj rs = s.robj; // Same as the previous call
stringArray and toString for passing strings from R into D.
See Implementation
Support for passing strings from D to R and vice versa.