Go to the documentation of this file.00001 #include <json.hpp>
00002
00003 using json = nlohmann::json;
00004
00005 int main()
00006 {
00007
00008 json j_null;
00009 json j_boolean = true;
00010 json j_number_integer = 17;
00011 json j_number_float = 23.42;
00012 json j_object = {{"one", 1}, {"two", 2}};
00013 json j_object_empty(json::value_t::object);
00014 json j_array = {1, 2, 4, 8, 16};
00015 json j_array_empty(json::value_t::array);
00016 json j_string = "Hello, world";
00017
00018
00019
00020 std::cout << j_boolean.front() << '\n';
00021 std::cout << j_number_integer.front() << '\n';
00022 std::cout << j_number_float.front() << '\n';
00023 std::cout << j_object.front() << '\n';
00024
00025 std::cout << j_array.front() << '\n';
00026
00027 std::cout << j_string.front() << '\n';
00028 }