9 lines
171 B
C++
9 lines
171 B
C++
#include <nlohmann/json.hpp>
|
|
import std;
|
|
int main() {
|
|
nlohmann::json j;
|
|
j["from"] = "extra";
|
|
std::println("{}", j["from"].get<std::string>());
|
|
return 0;
|
|
}
|