mirror of
https://github.com/nlohmann/json.git
synced 2025-01-08 23:17:51 +08:00
11 lines
160 B
C++
11 lines
160 B
C++
#include <iostream>
|
|
#include "json.hpp"
|
|
|
|
using json = nlohmann::json;
|
|
|
|
int main()
|
|
{
|
|
// call meta()
|
|
std::cout << std::setw(4) << json::meta() << '\n';
|
|
}
|