1
0
mirror of https://github.com/nlohmann/json.git synced 2025-06-20 03:42:14 +03:00

reorganized repo

This commit is contained in:
Niels
2015-06-21 21:24:03 +02:00
parent 4bb5126502
commit 91c330ae01
88 changed files with 313 additions and 321 deletions

View File

@ -0,0 +1,12 @@
#include <json.hpp>
using namespace nlohmann;
int main()
{
// create a JSON value with default null value
json j;
// serialize the JSON null value
std::cout << j << '\n';
}