2015-06-20 22:59:33 +00:00
|
|
|
#include <json.hpp>
|
|
|
|
|
2016-01-30 19:23:14 +00:00
|
|
|
using json = nlohmann::json;
|
2015-06-20 22:59:33 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// create a JSON value with default null value
|
|
|
|
json j;
|
|
|
|
|
|
|
|
// serialize the JSON null value
|
|
|
|
std::cout << j << '\n';
|
|
|
|
}
|