|
|
|
|
|
by sly010
3470 days ago
|
|
> It doesn't translate cleanly to any kind of object structure in terms of code. XML translates great to an object tree in many object oriented language. <foo bar="1">
<yo />
Hello
</foo>
new foo(new yo(), "hello", bar = 1)
Which is why it's so great to describe documents and static UIs.I agree though that it's not a great choice for a REST API. |
|