├── .github └── workflows │ └── haskell.yml ├── .gitignore ├── LICENSE ├── README.md ├── Setup.hs ├── WhyHaskellMatters.iml ├── functor-proof.md ├── img ├── language-1.png ├── language-2.png ├── language-3.png ├── language-4.png ├── language-5.png └── maybe.png ├── package.yaml ├── src ├── AlgebraicDataTypes.hs ├── Functions.hs ├── LazyEvaluation.hs ├── Lists.hs ├── Luhn.hs └── TypeClasses.hs ├── stack.yaml ├── test ├── Spec.hs └── Tests │ └── AllTestsSpec.hs └── zettelkasten.md /.github/workflows/haskell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/.github/workflows/haskell.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /WhyHaskellMatters.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/WhyHaskellMatters.iml -------------------------------------------------------------------------------- /functor-proof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/functor-proof.md -------------------------------------------------------------------------------- /img/language-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/img/language-1.png -------------------------------------------------------------------------------- /img/language-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/img/language-2.png -------------------------------------------------------------------------------- /img/language-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/img/language-3.png -------------------------------------------------------------------------------- /img/language-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/img/language-4.png -------------------------------------------------------------------------------- /img/language-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/img/language-5.png -------------------------------------------------------------------------------- /img/maybe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/img/maybe.png -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/package.yaml -------------------------------------------------------------------------------- /src/AlgebraicDataTypes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/src/AlgebraicDataTypes.hs -------------------------------------------------------------------------------- /src/Functions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/src/Functions.hs -------------------------------------------------------------------------------- /src/LazyEvaluation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/src/LazyEvaluation.hs -------------------------------------------------------------------------------- /src/Lists.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/src/Lists.hs -------------------------------------------------------------------------------- /src/Luhn.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/src/Luhn.hs -------------------------------------------------------------------------------- /src/TypeClasses.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/src/TypeClasses.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/test/Spec.hs -------------------------------------------------------------------------------- /test/Tests/AllTestsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/test/Tests/AllTestsSpec.hs -------------------------------------------------------------------------------- /zettelkasten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thma/WhyHaskellMatters/HEAD/zettelkasten.md --------------------------------------------------------------------------------