12 lines
195 B
C++
12 lines
195 B
C++
#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';
|
|
}
|