mirror of
https://github.com/nlohmann/json.git
synced 2025-07-16 18:41:53 +03:00
overworked doxygen
This commit is contained in:
16
docs/examples/basic_json__basic_json.cpp
Normal file
16
docs/examples/basic_json__basic_json.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
#include <json.hpp>
|
||||
|
||||
using namespace nlohmann;
|
||||
|
||||
int main()
|
||||
{
|
||||
// create a JSON array
|
||||
json j1 = {"one", "two", 3, 4.5, false};
|
||||
|
||||
// create a copy
|
||||
json j2(j1);
|
||||
|
||||
// serialize the JSON array
|
||||
std::cout << j1 << " = " << j2 << '\n';
|
||||
std::cout << std::boolalpha << (j1 == j2) << '\n';
|
||||
}
|
Reference in New Issue
Block a user