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 07:44:12 +00:00
|
|
|
|
2016-01-30 19:23:14 +00:00
|
|
|
using json = nlohmann::json;
|
2015-06-21 07:44:12 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// create JSON arrays
|
|
|
|
json j_no_init_list = json::array();
|
|
|
|
json j_empty_init_list = json::array({});
|
|
|
|
json j_nonempty_init_list = json::array({1, 2, 3, 4});
|
|
|
|
json j_list_of_pairs = json::array({ {"one", 1}, {"two", 2} });
|
|
|
|
|
|
|
|
// serialize the JSON arrays
|
|
|
|
std::cout << j_no_init_list << '\n';
|
|
|
|
std::cout << j_empty_init_list << '\n';
|
|
|
|
std::cout << j_nonempty_init_list << '\n';
|
|
|
|
std::cout << j_list_of_pairs << '\n';
|
|
|
|
}
|