00001 #include <json.hpp> 00002 00003 using json = nlohmann::json; 00004 00005 int main() 00006 { 00007 // create a JSON value with default null value 00008 json j; 00009 00010 // serialize the JSON null value 00011 std::cout << j << '\n'; 00012 }