json/test/cuda_example/json_cuda.cu

8 lines
106 B
Plaintext
Raw Normal View History

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