2020-02-06 21:32:34 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-02-06 21:32:34 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/JsonObject.h>
|
|
|
|
#include <AK/JsonValue.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main(int, char**)
|
|
|
|
{
|
|
|
|
auto value = JsonValue::from_string("{\"property\": \"value\"}");
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(value.has_value());
|
2020-06-11 07:40:27 +03:00
|
|
|
printf("parsed: _%s_\n", value.value().to_string().characters());
|
|
|
|
printf("object.property = '%s'\n", value.value().as_object().get("property").to_string().characters());
|
2020-02-06 21:32:34 +03:00
|
|
|
return 0;
|
|
|
|
}
|