json/docs/examples/~basic_json.cpp

14 lines
219 B
C++
Raw Normal View History

2022-05-10 20:54:09 +03:00
#include <iostream>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
int main()
{
json* j = new json("Hello, world!");
std::cout << *j << std::endl;
// explicitly call destructor
delete j;
}