ladybird/Meta/Lagom/TestJson.cpp

18 lines
507 B
C++
Raw Normal View History

2020-02-06 21:32:34 +03:00
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* 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\"}").release_value_but_fixme_should_propagate_errors();
printf("parsed: _%s_\n", value.to_string().characters());
printf("object.property = '%s'\n", value.as_object().get("property").to_string().characters());
2020-02-06 21:32:34 +03:00
return 0;
}