mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-12-04 14:45:59 +00:00
10 lines
139 B
C++
10 lines
139 B
C++
|
#include <nlohmann/json.hpp>
|
||
|
#include <iostream>
|
||
|
|
||
|
using json = nlohmann::json;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
std::cout << json::meta() << std::endl;
|
||
|
}
|