|
|
|
|
|
by breck
4582 days ago
|
|
Correct. We can turn all JSON to Space easily, but there's no canonical way to turn all Space into JSON (although you can do it easily for a particular use case). Unlike JSON, in Space order is important and you can have duplicate properties. So in JSON you can't do this: ```
{
'h1' : 'hello world',
'h1' : 'this is a test',
}
``` But you can do that in Space. |
|