mstch/test/data/section_as_context.data

11 lines
321 B
Plaintext
Raw Normal View History

2015-04-10 18:56:31 +08:00
mstch::object{
2015-04-10 02:41:27 +08:00
{"a_object", mstch::object{
{"title", std::string{"this is an object"}},
{"description", std::string{"one of its attributes is a list"}},
{"a_list", mstch::array{
mstch::object{{"label", std::string{"listitem1"}}},
mstch::object{{"label", std::string{"listitem2"}}}
}}
}}
2015-04-10 18:56:31 +08:00
}