2022-07-23 03:01:36 +02:00

9 lines
143 B
C++
Executable File

#include <json/json.h>
int answer()
{
Json::Value meaning_of;
meaning_of["everything"] = 42;
return meaning_of["everything"].asInt();
}