mirror of
https://github.com/nlohmann/json.git
synced 2024-12-12 20:19:09 +08:00
10 lines
140 B
C++
10 lines
140 B
C++
|
#include <json.hpp>
|
||
|
|
||
|
using json = nlohmann::json;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
// call meta()
|
||
|
std::cout << std::setw(4) << json::meta() << '\n';
|
||
|
}
|