RosettaCodeData/Task/JSON/D/json.d

7 lines
133 B
D
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
import std.stdio, std.json;
void main() {
2015-02-20 00:35:01 -05:00
auto j = parseJSON(`{ "foo": 1, "bar": [10, "apples"] }`);
2013-04-10 16:57:12 -07:00
writeln(toJSON(&j));
}