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::number_integer_t value = 42;
00009
00010 json j(value);
00011
00012
00013 std::cout << j << '\n';
00014 }