2017-07-09 12:51:38 +03:00
|
|
|
#include <iostream>
|
2017-04-14 18:37:28 +03:00
|
|
|
#include <iomanip> // for std::setw
|
2017-07-09 12:51:38 +03:00
|
|
|
#include "json.hpp"
|
2017-01-28 19:12:29 +03:00
|
|
|
|
|
|
|
|
using json = nlohmann::json;
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
|
{
|
|
|
|
|
// call meta()
|
|
|
|
|
std::cout << std::setw(4) << json::meta() << '\n';
|
|
|
|
|
}
|