mirror of
https://github.com/nlohmann/json.git
synced 2026-02-01 09:12:10 +00:00
9 lines
79 B
C++
9 lines
79 B
C++
#include "json.h"
|
|
|
|
int main()
|
|
{
|
|
json j;
|
|
j << std::cin;
|
|
return 0;
|
|
}
|