2017-07-09 09:51:38 +00:00
|
|
|
#include <iostream>
|
2018-02-01 21:20:26 +00:00
|
|
|
#include <nlohmann/json.hpp>
|
2015-06-21 16:30:08 +00:00
|
|
|
|
2016-01-30 19:23:14 +00:00
|
|
|
using json = nlohmann::json;
|
2015-06-21 16:30:08 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// create JSON values
|
|
|
|
json a = 23;
|
|
|
|
json b = 42;
|
|
|
|
|
|
|
|
// copy-assign a to b
|
|
|
|
b = a;
|
|
|
|
|
|
|
|
// serialize the JSON arrays
|
|
|
|
std::cout << a << '\n';
|
|
|
|
std::cout << b << '\n';
|
|
|
|
}
|