Been experimenting with the Json library.
I expected this to yield `[9, 9]` but instead it gave me an 'unexpected x found`. That's very surprising with the uncommented code as I use `succeed`. Likewise the `oneOf` line also gave that error. This wasn't what I expected, but perhaps I should have. (Note that succeed was used when I decoded the commented json string with the `\"\"`.
microJson : String
microJson = "[{\"tag\": 123}, {\"tag\": 23x4}]"
-- microJson = "[{\"tag\": 123}, {\"tag\": \"\"}]"
dec1 : Decoder (List Int)
dec1 = list (succeed 9)
-- dec1 = list <| ("tag" := int)
-- dec1 = list (oneOf [ ("tag" := int), succeed 9 ])