blob: 0f36e4f849d5fb65043898a7b7ee58bdf4efcbca [file] [log] [blame]
#include <json.hpp>
using json = nlohmann::json;
int main()
{
// create a JSON value with default null value
json j;
// serialize the JSON null value
std::cout << j << '\n';
}