1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-04 19:22:28 +03:00

overworked doxygen

This commit is contained in:
Niels
2015-06-21 00:59:33 +02:00
parent 0abac59291
commit e63c508172
62 changed files with 3851 additions and 870 deletions

View File

@ -0,0 +1,15 @@
#include <json.hpp>
using namespace nlohmann;
int main()
{
// create an array_t value
json::array_t value = {"one", "two", 3, 4.5, false};
// create a JSON array from the value
json j(value);
// serialize the JSON array
std::cout << j << '\n';
}