2022-07-31 16:28:01 +03:00
|
|
|
// __ _____ _____ _____
|
|
|
|
|
// __| | __| | | | JSON for Modern C++ (supporting code)
|
2022-08-01 00:19:06 +03:00
|
|
|
// | | |__ | | | | | | version 3.11.0
|
2022-07-31 16:28:01 +03:00
|
|
|
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
|
|
|
//
|
|
|
|
|
// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann <https://nlohmann.me>
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
2018-09-26 17:46:34 +03:00
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
2022-07-30 22:59:13 +03:00
|
|
|
int main(int argc, char** argv)
|
2018-09-26 17:46:34 +03:00
|
|
|
{
|
|
|
|
|
nlohmann::json j;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|