mirror of
https://github.com/nlohmann/json.git
synced 2025-11-24 11:54:34 +08:00
8 lines
106 B
Plaintext
8 lines
106 B
Plaintext
|
|
#include <nlohmann/json.hpp>
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
nlohmann::ordered_json json = {"Test"};
|
||
|
|
json.dump();
|
||
|
|
}
|