rcl/golden/json/set_union.test
Ruud van Asseldonk 878eaa4aa4 Use comma as the separator in record notation
I am still ambivalent about this. On the one hand I have a strong sense
that "key = value;" is a statement that needs a terminator. On the other
hand, it makes things more uniform to have only a single separator.

I think I just need to get used to the comma, and then I will not mind
so much. But let's see.
2023-10-21 10:43:44 +02:00

7 lines
171 B
Text

{
u0 = {"a", "b", "c"} | {"b", "d", "e"},
u1 = {"a", "b", "c"} | ["b", "d", "d", "e"],
}
# output:
{"u0": ["a", "b", "c", "d", "e"], "u1": ["a", "b", "c", "d", "e"]}