504012a3db
As <iostream> is not included in json.hpp any more, all code examples need to include <iostream> now.
11 lines
196 B
C++
11 lines
196 B
C++
#include <iostream>
|
|
#include <iomanip> // for std::setw
|
|
#include "json.hpp"
|
|
|
|
using json = nlohmann::json;
|
|
|
|
int main()
|
|
{
|
|
// call meta()
|
|
std::cout << std::setw(4) << json::meta() << '\n';
|
|
}
|