mirror of
https://github.com/nlohmann/json.git
synced 2024-12-03 05:29:01 +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';
|
|
}
|