mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-19 11:10:36 +08:00
9 lines
143 B
C++
9 lines
143 B
C++
|
#include <json/json.h>
|
||
|
|
||
|
int answer()
|
||
|
{
|
||
|
Json::Value meaning_of;
|
||
|
meaning_of["everything"] = 42;
|
||
|
return meaning_of["everything"].asInt();
|
||
|
}
|