├── .github └── workflows │ └── ci.yml ├── .stylish-haskell.yaml ├── LICENSE ├── Main.hs └── README.md /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/haskell-json/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.stylish-haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/haskell-json/HEAD/.stylish-haskell.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/haskell-json/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/haskell-json/HEAD/Main.hs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/haskell-json/HEAD/README.md --------------------------------------------------------------------------------