json/test/cuda_example/json_cuda.cu
2021-12-29 15:35:45 +01:00

8 lines
106 B
Plaintext

#include <nlohmann/json.hpp>
int main()
{
nlohmann::ordered_json json = {"Test"};
json.dump();
}