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