array.cpp 543 B

12345678910111213141516171819
  1. #include <iostream>
  2. #include <nlohmann/json.hpp>
  3. using json = nlohmann::json;
  4. int main()
  5. {
  6. // create JSON arrays
  7. json j_no_init_list = json::array();
  8. json j_empty_init_list = json::array({});
  9. json j_nonempty_init_list = json::array({1, 2, 3, 4});
  10. json j_list_of_pairs = json::array({ {"one", 1}, {"two", 2} });
  11. // serialize the JSON arrays
  12. std::cout << j_no_init_list << '\n';
  13. std::cout << j_empty_init_list << '\n';
  14. std::cout << j_nonempty_init_list << '\n';
  15. std::cout << j_list_of_pairs << '\n';
  16. }