std.data.json formal review

Suliman via Digitalmars-d digitalmars-d at puremagic.com
Mon Aug 17 12:32:18 PDT 2015


Why not working: 	
JSONValue x = parseJSONValue(`{"a": true, "b": "test"}`);

but:
string str = `{"a": true, "b": "test"}`;
JSONValue x = parseJSONValue(str);

work fine?


More information about the Digitalmars-d mailing list