Sign in
fuchsia
/
third_party
/
json
/
bd7cd330cddb78fd873e10f2d46bb16a47bfe947
/
.
/
doc
/
examples
/
basic_json__nullptr_t.cpp
blob: 426afabc67e2e413e7652914e7e597298352055b [
file
] [
log
] [
blame
]
#include
<json.hpp>
using
json
=
nlohmann
::
json
;
int
main
()
{
// create a JSON null value
json j
(
nullptr
);
// serialize the JSON null value
std
::
cout
<<
j
<<
'\n'
;
}