├── .github ├── CODEOWNERS └── workflows │ └── ci.yml ├── .gitignore ├── .stylish-haskell.yaml ├── CHANGELOG.md ├── LICENSE ├── README.lhs ├── README.md ├── eio.cabal └── src └── EIO.hs /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @chshersh @vrom911 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/eio/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/eio/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylish-haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/eio/HEAD/.stylish-haskell.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/eio/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/eio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.lhs: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/eio/HEAD/README.md -------------------------------------------------------------------------------- /eio.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/eio/HEAD/eio.cabal -------------------------------------------------------------------------------- /src/EIO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/eio/HEAD/src/EIO.hs --------------------------------------------------------------------------------