json/doc/examples/basic_json__boolean_t.cpp
2015-06-22 23:21:49 +02:00

15 lines
251 B
C++

#include <json.hpp>
using namespace nlohmann;
int main()
{
// create boolean values
json j_truth = true;
json j_falsity = false;
// serialize the JSON booleans
std::cout << j_truth << '\n';
std::cout << j_falsity << '\n';
}