mirror of
https://github.com/nlohmann/json
synced 2024-12-27 11:00:14 +00:00
9 lines
79 B
C++
9 lines
79 B
C++
#include "JSON.h"
|
|
|
|
int main()
|
|
{
|
|
JSON j;
|
|
j << std::cin;
|
|
return 0;
|
|
}
|