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

16 lines
293 B
C++

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