Comment #0 by khurshid.normuradov — 2013-08-08T06:03:13Z
I think that, this code must be throw, but it's success run.
import std.json;
import std.stdio : writeln;
void main()
{
////////////////////////// leading spaces doesn't skip between 1 and E.
auto json = parseJSON(`{ "throwable_one" : 1 .E +1 }`);
writeln( toJSON(&json) );
}