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

16 lines
273 B
C++

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