more documentation
This commit is contained in:
parent
770b9820fe
commit
c85dbef98f
9 changed files with 441 additions and 85 deletions
15
doc/examples/basic_json__string_t.cpp
Normal file
15
doc/examples/basic_json__string_t.cpp
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#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';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue