Jason Hickner

Results 3 issues of Jason Hickner

This PR implements string interpolation within `List` and nested `List`s. Includes tests! (ok, _a_ test) Gist describing the issue that prompted this PR: https://gist.github.com/ramirez7/a963a5745f74d7e76b95ddb19615397d resolves #21

I ran into an issue caused by the non-deterministic ordering of `Visit`. This change first sorts the map keys, making the order deterministic. I also added go.mod and go.sum files.

I have an existing type like this in my Haskell app: ``` haskell data FooType = FooTypeEnum { fooTypeValues :: [Text] } ... ``` With JSON serialization defined which outputs:...

enhancement