void login(HTTPServerRequest req, HTTPServerResponse res)
{
 Json request = req.json;
 writeln(to!string(request["username"]));
 writeln(request["username"].to!string);
}

Why first code print output with quotes, and second not?
"asd"
asd

Reply via email to