json/benchmark/parse.cc

9 lines
79 B
C++
Raw Normal View History

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