2015-06-22 21:21:49 +00:00
|
|
|
#include <json.hpp>
|
|
|
|
|
2016-01-30 19:23:14 +00:00
|
|
|
using json = nlohmann::json;
|
2015-06-22 21:21:49 +00:00
|
|
|
|
|
|
|
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';
|
|
|
|
}
|