blob: 7df3d0625a9ded5d78cfd7c94c3664b14f5fb10a [file] [log] [blame]
#include <json.hpp>
using json = nlohmann::json;
int main()
{
// create a JSON array
json j_array = {0, 1, 2, 3, 4, 5};
// call erase
j_array.erase(2);
// print values
std::cout << j_array << '\n';
}