Files
cargoxx/tests/e2e/buildCppPackage/src/bin/extra.cpp

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;
}