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