json/doc/examples/basic_json.cpp
2015-06-21 21:24:03 +02:00

13 lines
192 B
C++

#include <json.hpp>
using namespace nlohmann;
int main()
{
// create a JSON value with default null value
json j;
// serialize the JSON null value
std::cout << j << '\n';
}