json/benchmark/parse.cc

9 lines
79 B
C++
Raw Normal View History

2015-01-04 19:43:25 +00:00
#include "json.h"
2014-12-29 20:13:03 +00:00
int main()
{
2015-01-04 19:43:25 +00:00
json j;
2014-12-29 20:13:03 +00:00
j << std::cin;
return 0;
}