json/doc/examples/basic_json__string_t_value_type.cpp
2016-01-30 20:23:14 +01:00

13 lines
245 B
C++

#include <json.hpp>
using json = nlohmann::json;
int main()
{
// create a JSON string directly from a string literal
json j("The quick brown fox jumps over the lazy doc");
// serialize the JSON array
std::cout << j << '\n';
}