json/doc/examples/basic_json__string_t_value_type.cpp
2015-06-21 22:42:32 +02:00

13 lines
242 B
C++

#include <json.hpp>
using namespace nlohmann;
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';
}