8 lines
106 B
Plaintext
8 lines
106 B
Plaintext
|
|
#include <nlohmann/json.hpp>
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
nlohmann::ordered_json json = {"Test"};
|
||
|
|
json.dump();
|
||
|
|
}
|