• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <iostream>
2 #include <nlohmann/json.hpp>
3 
4 using json = nlohmann::json;
5 
main()6 int main()
7 {
8     // create the different JSON values with default values
9     json j_null(json::value_t::null);
10     json j_boolean(json::value_t::boolean);
11     json j_number_integer(json::value_t::number_integer);
12     json j_number_float(json::value_t::number_float);
13     json j_object(json::value_t::object);
14     json j_array(json::value_t::array);
15     json j_string(json::value_t::string);
16 
17     // serialize the JSON values
18     std::cout << j_null << '\n';
19     std::cout << j_boolean << '\n';
20     std::cout << j_number_integer << '\n';
21     std::cout << j_number_float << '\n';
22     std::cout << j_object << '\n';
23     std::cout << j_array << '\n';
24     std::cout << j_string << '\n';
25 }
26