From 82cc340ca2a1c254caf30921fbd03e6526e6962d Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 19 Aug 2019 17:08:27 -0700 Subject: [PATCH 01/13] Upgrade PS to 0.13.3 --- .travis.yml | 2 +- 00-Getting-Started/02-Install-Guide.md | 6 +++--- 00-Getting-Started/04-Other-Important-Info.md | 4 ++-- 02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md | 2 +- .../03-Effect-and-Aff/src/03-Aff/04-Useful-Aff-Libraries.md | 2 +- ReadMe.md | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index dfda9b4d0..c56d102b6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ before_install: # ^ Update NPM install: - - npm i -g purescript@0.13.x spago@0.9.0 + - npm i -g purescript@0.13.3 spago@0.9.0 # ^ Use NPM to install most packages - chmod +x .travis/spago--print-versions.sh - ./.travis/spago--print-versions.sh diff --git a/00-Getting-Started/02-Install-Guide.md b/00-Getting-Started/02-Install-Guide.md index e5f87c389..01e685e43 100644 --- a/00-Getting-Started/02-Install-Guide.md +++ b/00-Getting-Started/02-Install-Guide.md @@ -24,7 +24,7 @@ We can install everything using `npm`. However, getting `npm` is it's own proble ##### Manual Install -Justin Woo explains how to set up one's environment for the `0.12.x` release but has not been updated for two things. First, the PureScript release at the time was `0.12.0` but now `0.13.x` is out. Second, the instructions use `pulp` and `psc-package`, a different build tool workflow than the one we'll use here. +Justin Woo explains how to set up one's environment for the `0.12.x` release but has not been updated for two things. First, the PureScript release at the time was `0.12.0` but now `0.13.3` is out. Second, the instructions use `pulp` and `psc-package`, a different build tool workflow than the one we'll use here. If you just want to get things set up ASAP, follow the below summary of his article's instructions (using `spago` instead of the other tools). If you want to understand why you should do these commands, read [his article here](https://qiita.com/kimagure/items/570e6f2bbce5b4724564): 1. Install Node 10 or greater: https://nodejs.org/en/download/ @@ -44,14 +44,14 @@ Unlike the manual install, `nvm` properly handles the npm prefix for you. So, yo Once you have installed `npm`, we can use it to install everything in one command: ```bash -npm i -g purescript@0.13.x spago@0.9.0 parcel +npm i -g purescript@0.13.3 spago@0.9.0 parcel ``` ### Versions Used in this Project The following commands should now work (the versions beside them are the versions I used when writing this project): ```bash -purs --version # 0.13.x +purs --version # 0.13.3 spago version # 0.9.0.0 parcel --version # 1.12.0 ``` diff --git a/00-Getting-Started/04-Other-Important-Info.md b/00-Getting-Started/04-Other-Important-Info.md index 3560e3cd2..4daa2aa8d 100644 --- a/00-Getting-Started/04-Other-Important-Info.md +++ b/00-Getting-Started/04-Other-Important-Info.md @@ -4,7 +4,7 @@ If you decide to read the book, here are things to be aware of: - be wary of any references to these [deprecated packages](https://github.com/purescript-deprecated) -- **Refer to [`dwhitney`'s fork of the book's code](https://github.com/dwhitney/purescript-book/tree/0.12)**, which is currently being updating to use `0.13.x`. +- **Refer to [`dwhitney`'s fork of the book's code](https://github.com/dwhitney/purescript-book/tree/0.12)**, which is currently being updating to use `0.13.3`. - Refer to `Hello-World/Effect-and-Aff/Effect-Eff-and-Aff.md` to understand how to translate the no-longer-used `Eff` type to `Effect` type. ## Differences From Haskell @@ -31,7 +31,7 @@ Then, you use a search query like the following: - Anytime you need to look up the documentation for a package, use [Pursuit](http://pursuit.purescript.org/). Be aware that some of the deprecated packages mentioned above are still posted there. - Read [Pursuit's Search Help page](https://pursuit.purescript.org/help/users#searching) -- Some libraries have not been updated to `0.13.x` and are still on the `0.11.7` release. Some still work; others won't. In this work, we will insure that you do not use any such libraries, but be aware of that if you browse the docs on your own. +- Some libraries have not been updated to `0.13.3` and are still on the `0.11.7` release. Some still work; others won't. In this work, we will insure that you do not use any such libraries, but be aware of that if you browse the docs on your own. - Lastly, some libraries have not uploaded their latest versions' documentation. In these cases, we will forewarn you. Fortunately, `spago docs` will produce a local version of the source code's documentation that looks similar to Pursuit. It does not support all the features of Pursuit, but it's better than nothing. To do that, follow these commands: - `spago docs && generated-docs/html/index.html` where ` Date: Mon, 19 Aug 2019 17:09:29 -0700 Subject: [PATCH 02/13] Update syntax for docs: include data constructors & type class members --- .../01-Basic-Syntax/src/04-Documentation.purs | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/11-Syntax/01-Basic-Syntax/src/04-Documentation.purs b/11-Syntax/01-Basic-Syntax/src/04-Documentation.purs index eb79417d8..e7321883d 100644 --- a/11-Syntax/01-Basic-Syntax/src/04-Documentation.purs +++ b/11-Syntax/01-Basic-Syntax/src/04-Documentation.purs @@ -31,33 +31,34 @@ -- | f = 4 -- | ``` --- | Module-level documentation +-- | Documentation on a given module module Syntax.Documentation where --- | value documentation +-- | Documentation on a value value :: Int value = 4 --- | function documentation +-- | Documentation on a function function :: Int -> String function _ = "easy" --- | data documentation -data SomeData = SomeData +-- | Documentation on a given data type +data SomeData + -- | Documentation on a particular data constructor + = SomeData --- | type documentation +-- | Documentation on a given type alias type MyType = String --- | newtype documentation +-- | Documentation on a given newtype newtype SmallInt = SmallInt Int --- | type class documentation +-- | Documentation on a given type class class MyClass a b | a -> b where - -- | Unfortunately, functions/values inside a type class cannot yet - -- | be documented because of a compiler bug: - -- | See https://github.com/purescript/purescript/issues/3507 + -- | Documentation for a particular function/value + -- | defined in a type class myFunction :: a -> b --- | instance documentation +-- | Documentation for a particular instance of a type class instance example :: MyClass String Int where myFunction _ = 4 From 3ca729acde10109e85ac8be222e39a6fe8f0d496 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 19 Aug 2019 17:12:20 -0700 Subject: [PATCH 03/13] Link to FP Jargon repo --- 00-Getting-Started/04-Other-Important-Info.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/00-Getting-Started/04-Other-Important-Info.md b/00-Getting-Started/04-Other-Important-Info.md index 4daa2aa8d..16d86ac3c 100644 --- a/00-Getting-Started/04-Other-Important-Info.md +++ b/00-Getting-Started/04-Other-Important-Info.md @@ -7,6 +7,10 @@ If you decide to read the book, here are things to be aware of: - **Refer to [`dwhitney`'s fork of the book's code](https://github.com/dwhitney/purescript-book/tree/0.12)**, which is currently being updating to use `0.13.3`. - Refer to `Hello-World/Effect-and-Aff/Effect-Eff-and-Aff.md` to understand how to translate the no-longer-used `Eff` type to `Effect` type. +## Functional Programming Jargon + +While reading through this repo, the [Functional Programming Jargon](https://github.com/hemanth/functional-programming-jargon) might be a helpful reference whenever you come across a term that isn't covered in this project. + ## Differences From Haskell If you're coming to PureScript with a Haskell background, be sure to consult the following resources: From 266db4e6041a88ee5d49511cb177d4155ce38e96 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 19 Aug 2019 17:17:43 -0700 Subject: [PATCH 04/13] Link to Thomas' profunctor lenses and optics post --- 31-Design-Patterns/15-Optics.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/31-Design-Patterns/15-Optics.md b/31-Design-Patterns/15-Optics.md index 58fb1d60d..9b0c76798 100644 --- a/31-Design-Patterns/15-Optics.md +++ b/31-Design-Patterns/15-Optics.md @@ -1,9 +1,17 @@ # Optics +To understand what problem optics solve and why they are an essential tool in the FP toolbox, read Thomas Honeyman's [Practical Profunctor Lenses & Optics in PureScript](https://thomashoneyman.com/articles/practical-profunctor-lenses-optics/). + +Lenses have already been explained quite clearly in a book that uses PureScript to do so via [Lenses for the Mere Mortal: Purescript Edition](https://leanpub.com/lenses). I've read it and recommend it. + Once you have finished the Lenses book mentioned below, see [Oleg's Glassery post](http://oleg.fi/gists/posts/2017-04-18-glassery.html) +Lenses are also explained in the [Racket Programming Languages's Lenses Guide](https://docs.racket-lang.org/lens/index.html). I'm not sure how helpful it is or what it further explains besides the above book, but I'm still including it here. + ## Lenses +**Note: due to Thomas' above blog post, the below section will be removed in the next major release.** + Since FP data types cannot be subclassed like OO data types, one will often define a shared component and then define its 'subclasses' as having that shared component: ```purescript type Shape = { fill :: Color } @@ -23,7 +31,3 @@ user.config.personal.privacy.email { isPublic = false } ``` This leads to a lot of boilerplate but the concept is easily abstracted into Lenses. - -Lenses have already been explained quite clearly in a book that uses PureScript to do so via [Lenses for the Mere Mortal: Purescript Edition](https://leanpub.com/lenses). I've read it and recommend it. - -Lenses are also explained in the [Racket Programming Languages's Lenses Guide](https://docs.racket-lang.org/lens/index.html). I'm not sure how helpful it is or what it further explains besides the above book, but I'm still including it here. From cf4c15f0ad7de3aafc6677df606f13a532507407 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 19 Aug 2019 17:20:57 -0700 Subject: [PATCH 05/13] Link to 'a few algebraic data structures' reference post --- .../02-Prelude/09-Appendable--Numeric-Hierarchy.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/21-Hello-World/02-Prelude-ish/02-Prelude/09-Appendable--Numeric-Hierarchy.md b/21-Hello-World/02-Prelude-ish/02-Prelude/09-Appendable--Numeric-Hierarchy.md index 2b63d9999..19971e2c3 100644 --- a/21-Hello-World/02-Prelude-ish/02-Prelude/09-Appendable--Numeric-Hierarchy.md +++ b/21-Hello-World/02-Prelude-ish/02-Prelude/09-Appendable--Numeric-Hierarchy.md @@ -4,6 +4,8 @@ After Semigroup and Monoid, the rest of PureScript's Numeric type classes (e.g. Once one finishes reading it, be sure to check out [his full-screen cheatsheet](https://harry.garrood.me/numeric-hierarchy-overview/) and [his overview of PureScript's numberic types](https://a-guide-to-the-purescript-numeric-hierarchy.readthedocs.io/en/latest/appendix/purescript-impls.html) +Another resource that might be helpful is [A Brief Guide to A Few Algebraic Data Structures](https://argumatronic.com/posts/2019-06-21-algebra-cheatsheet.html). However, this is more of a reference material than a tutorial like Harry's above overview. + ## Docs - [Semigring](https://pursuit.purescript.org/packages/purescript-prelude/4.1.0/docs/Data.Semiring) From 7a0bc09ce418e4ae44bcef24fe54df750392d627 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 19 Aug 2019 17:33:12 -0700 Subject: [PATCH 06/13] Correction: markdown tables aren't rendered correctly --- 11-Syntax/01-Basic-Syntax/src/04-Documentation.purs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/11-Syntax/01-Basic-Syntax/src/04-Documentation.purs b/11-Syntax/01-Basic-Syntax/src/04-Documentation.purs index e7321883d..57cd875d2 100644 --- a/11-Syntax/01-Basic-Syntax/src/04-Documentation.purs +++ b/11-Syntax/01-Basic-Syntax/src/04-Documentation.purs @@ -19,11 +19,11 @@ -- | 2. Item -- | 3. Item -- | --- | A table: +-- | Unfortunately, markdown tables don't work...: -- | -- | | One | Two | Three | --- | | - | - | - | --- | | a | b | c +-- | | --- | --- | ----- | +-- | | a | b | c | -- | -- | Some code: -- | ```purescript From f4782308f52da10e22ebd6cf2a79b2591feb0c00 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 19 Aug 2019 17:33:45 -0700 Subject: [PATCH 07/13] Update package-set upgrading command --- .../upgrade-package-set-in-each-folder.sh | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.procedures/upgrade-package-set-in-each-folder.sh b/.procedures/upgrade-package-set-in-each-folder.sh index ac16c5ceb..c7b47796e 100755 --- a/.procedures/upgrade-package-set-in-each-folder.sh +++ b/.procedures/upgrade-package-set-in-each-folder.sh @@ -7,71 +7,71 @@ echo "... Syntax ...." cd 11-Syntax/01-Basic-Syntax/ pwd -spago package-set-upgrade +spago upgrade-set cd ../../ cd 11-Syntax/02-Foreign-Function-Interface/ pwd -spago package-set-upgrade +spago upgrade-set cd ../../ cd 11-Syntax/03-Type-Level-Programming-Syntax/ pwd -spago package-set-upgrade +spago upgrade-set cd ../../ cd 11-Syntax/04-Module-Syntax/ pwd -spago package-set-upgrade +spago upgrade-set cd ../../ cd 11-Syntax/05-Prelude-Syntax/ pwd -spago package-set-upgrade +spago upgrade-set cd ../../ cd 11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/ pwd -spago package-set-upgrade +spago upgrade-set cd ../../ echo "... Hello World ...." cd 21-Hello-World/03-Effect-and-Aff/ pwd -spago package-set-upgrade +spago upgrade-set cd ../../ cd 21-Hello-World/04-Debugging/ pwd -spago package-set-upgrade +spago upgrade-set cd ../../ cd 21-Hello-World/05-Application-Structure/ pwd -spago package-set-upgrade +spago upgrade-set cd ../../ cd 21-Hello-World/06-Type-Level-Programming/ pwd -spago package-set-upgrade +spago upgrade-set cd ../../ cd 21-Hello-World/07-Testing/ pwd -spago package-set-upgrade +spago upgrade-set cd ../../ cd 21-Hello-World/08-Benchmarking/ pwd -spago package-set-upgrade +spago upgrade-set cd ../../ echo "... Projects ...." cd 22-Projects/ pwd -spago package-set-upgrade +spago upgrade-set cd ../ echo "... Finished ...." From 768e397772cd9333be6255fd1e054582d0546fc7 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 19 Aug 2019 17:35:39 -0700 Subject: [PATCH 08/13] Upgrade project's package sets to the latest set --- 11-Syntax/01-Basic-Syntax/packages.dhall | 2 +- 11-Syntax/02-Foreign-Function-Interface/packages.dhall | 2 +- 11-Syntax/03-Type-Level-Programming-Syntax/packages.dhall | 2 +- 11-Syntax/04-Module-Syntax/packages.dhall | 2 +- 11-Syntax/05-Prelude-Syntax/packages.dhall | 2 +- 11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/packages.dhall | 2 +- 21-Hello-World/03-Effect-and-Aff/packages.dhall | 2 +- 21-Hello-World/04-Debugging/packages.dhall | 2 +- 21-Hello-World/05-Application-Structure/packages.dhall | 2 +- 21-Hello-World/06-Type-Level-Programming/packages.dhall | 2 +- 21-Hello-World/07-Testing/packages.dhall | 2 +- 21-Hello-World/08-Benchmarking/packages.dhall | 2 +- 22-Projects/packages.dhall | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/11-Syntax/01-Basic-Syntax/packages.dhall b/11-Syntax/01-Basic-Syntax/packages.dhall index 1a75652b2..2c69c0114 100644 --- a/11-Syntax/01-Basic-Syntax/packages.dhall +++ b/11-Syntax/01-Basic-Syntax/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = {=} diff --git a/11-Syntax/02-Foreign-Function-Interface/packages.dhall b/11-Syntax/02-Foreign-Function-Interface/packages.dhall index 1a75652b2..2c69c0114 100644 --- a/11-Syntax/02-Foreign-Function-Interface/packages.dhall +++ b/11-Syntax/02-Foreign-Function-Interface/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = {=} diff --git a/11-Syntax/03-Type-Level-Programming-Syntax/packages.dhall b/11-Syntax/03-Type-Level-Programming-Syntax/packages.dhall index 1a75652b2..2c69c0114 100644 --- a/11-Syntax/03-Type-Level-Programming-Syntax/packages.dhall +++ b/11-Syntax/03-Type-Level-Programming-Syntax/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = {=} diff --git a/11-Syntax/04-Module-Syntax/packages.dhall b/11-Syntax/04-Module-Syntax/packages.dhall index 1a75652b2..2c69c0114 100644 --- a/11-Syntax/04-Module-Syntax/packages.dhall +++ b/11-Syntax/04-Module-Syntax/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = {=} diff --git a/11-Syntax/05-Prelude-Syntax/packages.dhall b/11-Syntax/05-Prelude-Syntax/packages.dhall index 1a75652b2..2c69c0114 100644 --- a/11-Syntax/05-Prelude-Syntax/packages.dhall +++ b/11-Syntax/05-Prelude-Syntax/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = {=} diff --git a/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/packages.dhall b/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/packages.dhall index 1a75652b2..2c69c0114 100644 --- a/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/packages.dhall +++ b/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = {=} diff --git a/21-Hello-World/03-Effect-and-Aff/packages.dhall b/21-Hello-World/03-Effect-and-Aff/packages.dhall index 1a75652b2..2c69c0114 100644 --- a/21-Hello-World/03-Effect-and-Aff/packages.dhall +++ b/21-Hello-World/03-Effect-and-Aff/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = {=} diff --git a/21-Hello-World/04-Debugging/packages.dhall b/21-Hello-World/04-Debugging/packages.dhall index 1a75652b2..2c69c0114 100644 --- a/21-Hello-World/04-Debugging/packages.dhall +++ b/21-Hello-World/04-Debugging/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = {=} diff --git a/21-Hello-World/05-Application-Structure/packages.dhall b/21-Hello-World/05-Application-Structure/packages.dhall index 1a75652b2..2c69c0114 100644 --- a/21-Hello-World/05-Application-Structure/packages.dhall +++ b/21-Hello-World/05-Application-Structure/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = {=} diff --git a/21-Hello-World/06-Type-Level-Programming/packages.dhall b/21-Hello-World/06-Type-Level-Programming/packages.dhall index 1a75652b2..2c69c0114 100644 --- a/21-Hello-World/06-Type-Level-Programming/packages.dhall +++ b/21-Hello-World/06-Type-Level-Programming/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = {=} diff --git a/21-Hello-World/07-Testing/packages.dhall b/21-Hello-World/07-Testing/packages.dhall index 1a75652b2..2c69c0114 100644 --- a/21-Hello-World/07-Testing/packages.dhall +++ b/21-Hello-World/07-Testing/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = {=} diff --git a/21-Hello-World/08-Benchmarking/packages.dhall b/21-Hello-World/08-Benchmarking/packages.dhall index 5b5267972..8dd38806d 100644 --- a/21-Hello-World/08-Benchmarking/packages.dhall +++ b/21-Hello-World/08-Benchmarking/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = {=} diff --git a/22-Projects/packages.dhall b/22-Projects/packages.dhall index d17f52347..1372670bf 100644 --- a/22-Projects/packages.dhall +++ b/22-Projects/packages.dhall @@ -112,7 +112,7 @@ let mkPackage = https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57 let upstream = - https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2-20190715/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e + https://github.com/purescript/package-sets/releases/download/psc-0.13.3-20190818/packages.dhall sha256:c95c4a8b8033a48a350106b759179f68a695c7ea2208228c522866fd43814dc8 let overrides = { halogen = From e1c9e04da7c3d452f1897729daaed4fd46116db5 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 19 Aug 2019 17:43:50 -0700 Subject: [PATCH 09/13] Update spago.dhall files; remote 'test/' dir when unused --- 11-Syntax/01-Basic-Syntax/spago.dhall | 4 +++- 11-Syntax/02-Foreign-Function-Interface/spago.dhall | 4 +++- 11-Syntax/03-Type-Level-Programming-Syntax/spago.dhall | 4 +++- 11-Syntax/04-Module-Syntax/spago.dhall | 4 +++- 11-Syntax/05-Prelude-Syntax/spago.dhall | 4 +++- 11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/spago.dhall | 2 +- 21-Hello-World/03-Effect-and-Aff/spago.dhall | 2 +- 21-Hello-World/04-Debugging/spago.dhall | 2 +- 21-Hello-World/05-Application-Structure/spago.dhall | 2 +- 21-Hello-World/06-Type-Level-Programming/spago.dhall | 4 +++- 21-Hello-World/07-Testing/spago.dhall | 2 +- 21-Hello-World/08-Benchmarking/spago.dhall | 2 +- 12 files changed, 24 insertions(+), 12 deletions(-) diff --git a/11-Syntax/01-Basic-Syntax/spago.dhall b/11-Syntax/01-Basic-Syntax/spago.dhall index 2712612ac..dbabb847e 100644 --- a/11-Syntax/01-Basic-Syntax/spago.dhall +++ b/11-Syntax/01-Basic-Syntax/spago.dhall @@ -2,7 +2,9 @@ Welcome to a Spago project! You can edit this file as you like. -} -{ name = +{ sources = + [ "src/**/*.purs" ] +, name = "untitled" , dependencies = [ "console", "effect", "newtype", "partial", "prelude", "psci-support" ] diff --git a/11-Syntax/02-Foreign-Function-Interface/spago.dhall b/11-Syntax/02-Foreign-Function-Interface/spago.dhall index 2712612ac..dbabb847e 100644 --- a/11-Syntax/02-Foreign-Function-Interface/spago.dhall +++ b/11-Syntax/02-Foreign-Function-Interface/spago.dhall @@ -2,7 +2,9 @@ Welcome to a Spago project! You can edit this file as you like. -} -{ name = +{ sources = + [ "src/**/*.purs" ] +, name = "untitled" , dependencies = [ "console", "effect", "newtype", "partial", "prelude", "psci-support" ] diff --git a/11-Syntax/03-Type-Level-Programming-Syntax/spago.dhall b/11-Syntax/03-Type-Level-Programming-Syntax/spago.dhall index cca38ac95..1476be5af 100644 --- a/11-Syntax/03-Type-Level-Programming-Syntax/spago.dhall +++ b/11-Syntax/03-Type-Level-Programming-Syntax/spago.dhall @@ -2,7 +2,9 @@ Welcome to a Spago project! You can edit this file as you like. -} -{ name = +{ sources = + [ "src/**/*.purs" ] +, name = "untitled" , dependencies = [ "console" diff --git a/11-Syntax/04-Module-Syntax/spago.dhall b/11-Syntax/04-Module-Syntax/spago.dhall index 2712612ac..dbabb847e 100644 --- a/11-Syntax/04-Module-Syntax/spago.dhall +++ b/11-Syntax/04-Module-Syntax/spago.dhall @@ -2,7 +2,9 @@ Welcome to a Spago project! You can edit this file as you like. -} -{ name = +{ sources = + [ "src/**/*.purs" ] +, name = "untitled" , dependencies = [ "console", "effect", "newtype", "partial", "prelude", "psci-support" ] diff --git a/11-Syntax/05-Prelude-Syntax/spago.dhall b/11-Syntax/05-Prelude-Syntax/spago.dhall index edd5d2012..0840596f9 100644 --- a/11-Syntax/05-Prelude-Syntax/spago.dhall +++ b/11-Syntax/05-Prelude-Syntax/spago.dhall @@ -2,7 +2,9 @@ Welcome to a Spago project! You can edit this file as you like. -} -{ name = +{ sources = + [ "src/**/*.purs" ] +, name = "untitled" , dependencies = [ "console", "effect", "prelude" ] diff --git a/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/spago.dhall b/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/spago.dhall index ae582f037..e2152cfb5 100644 --- a/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/spago.dhall +++ b/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/spago.dhall @@ -9,5 +9,5 @@ You can edit this file as you like. , packages = ./packages.dhall , sources = - [ "src/**/*.purs", "test/**/*.purs" ] + [ "src/**/*.purs" ] } diff --git a/21-Hello-World/03-Effect-and-Aff/spago.dhall b/21-Hello-World/03-Effect-and-Aff/spago.dhall index 8c28b9c84..d82a07fc7 100644 --- a/21-Hello-World/03-Effect-and-Aff/spago.dhall +++ b/21-Hello-World/03-Effect-and-Aff/spago.dhall @@ -3,7 +3,7 @@ Welcome to a Spago project! You can edit this file as you like. -} { sources = - [ "src/**/*.purs", "test/**/*.purs" ] + [ "src/**/*.purs" ] , name = "untitled" , dependencies = diff --git a/21-Hello-World/04-Debugging/spago.dhall b/21-Hello-World/04-Debugging/spago.dhall index ad8b1a06a..21c8fe2ac 100644 --- a/21-Hello-World/04-Debugging/spago.dhall +++ b/21-Hello-World/04-Debugging/spago.dhall @@ -3,7 +3,7 @@ Welcome to a Spago project! You can edit this file as you like. -} { sources = - [ "src/**/*.purs", "test/**/*.purs" ] + [ "src/**/*.purs" ] , name = "untitled" , dependencies = diff --git a/21-Hello-World/05-Application-Structure/spago.dhall b/21-Hello-World/05-Application-Structure/spago.dhall index 24621a0b8..16e5d9d7d 100644 --- a/21-Hello-World/05-Application-Structure/spago.dhall +++ b/21-Hello-World/05-Application-Structure/spago.dhall @@ -3,7 +3,7 @@ Welcome to a Spago project! You can edit this file as you like. -} { sources = - [ "src/**/*.purs", "test/**/*.purs" ] + [ "src/**/*.purs" ] , name = "untitled" , dependencies = diff --git a/21-Hello-World/06-Type-Level-Programming/spago.dhall b/21-Hello-World/06-Type-Level-Programming/spago.dhall index c6bf2f70c..18f66fb69 100644 --- a/21-Hello-World/06-Type-Level-Programming/spago.dhall +++ b/21-Hello-World/06-Type-Level-Programming/spago.dhall @@ -2,7 +2,9 @@ Welcome to a Spago project! You can edit this file as you like. -} -{ name = +{ sources = + [ "src/**/*.purs" ] +, name = "untitled" , dependencies = [ "console" diff --git a/21-Hello-World/07-Testing/spago.dhall b/21-Hello-World/07-Testing/spago.dhall index 6c7cee271..a52c993cf 100644 --- a/21-Hello-World/07-Testing/spago.dhall +++ b/21-Hello-World/07-Testing/spago.dhall @@ -3,7 +3,7 @@ Welcome to a Spago project! You can edit this file as you like. -} { sources = - [ "src/**/*.purs", "test/**/*.purs" ] + [ "test/**/*.purs" ] , name = "untitled" , dependencies = diff --git a/21-Hello-World/08-Benchmarking/spago.dhall b/21-Hello-World/08-Benchmarking/spago.dhall index c7769222a..31aaad27f 100644 --- a/21-Hello-World/08-Benchmarking/spago.dhall +++ b/21-Hello-World/08-Benchmarking/spago.dhall @@ -3,7 +3,7 @@ Welcome to a Spago project! You can edit this file as you like. -} { sources = - [ "src/**/*.purs", "test/**/*.purs", "benchmark/**/*.purs" ] + [ "src/**/*.purs", "benchmark/**/*.purs" ] , name = "ignore" , dependencies = From 24e9183988319df4a9a070fdd98a486877a2d0a6 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 19 Aug 2019 17:44:52 -0700 Subject: [PATCH 10/13] Also remove node_modules folder when upgrading to new project release --- for-each-folder--install-deps-and-compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/for-each-folder--install-deps-and-compile.sh b/for-each-folder--install-deps-and-compile.sh index 3799d1f32..fb2f21d54 100755 --- a/for-each-folder--install-deps-and-compile.sh +++ b/for-each-folder--install-deps-and-compile.sh @@ -113,7 +113,7 @@ cd ../../ cd 22-Projects/ pwd -rm -rf output/ .spago/ +rm -rf output/ .spago/ node_modules/ rm -rf .psc-package/ .pulp-cache/ .psc-package.json npm install benchmark spago build From c952341988c54267a2941c04c65e19766196e7c3 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 19 Aug 2019 17:47:18 -0700 Subject: [PATCH 11/13] Remove Run-based versions of random number game test --- for-each-folder--install-deps-and-compile.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/for-each-folder--install-deps-and-compile.sh b/for-each-folder--install-deps-and-compile.sh index fb2f21d54..7597f8b81 100755 --- a/for-each-folder--install-deps-and-compile.sh +++ b/for-each-folder--install-deps-and-compile.sh @@ -121,8 +121,6 @@ spago build # Node-based tests spago test -m Test.RandomNumber.ReaderT.Standard.DifferentMonad spago test -m Test.RandomNumber.ReaderT.Standard.SameMonad -spago test -m Test.RandomNumber.Run.Standard -spago test -m Test.RandomNumber.Run.Layered spago test -m Test.ToC.MainLogic.QuickCheckTest spago test -m Test.ToC.ParserLogic.QuickCheckTest From 1e1d22a7d27ebce2625202eb5f347529128b67fd Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 19 Aug 2019 18:05:51 -0700 Subject: [PATCH 12/13] Fix compiler warning: remove unnecessary import --- .../src/03-Aff/03-Node-ReadLine/02-ReadLine-Effect.purs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/02-ReadLine-Effect.purs b/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/02-ReadLine-Effect.purs index 8ce8f7914..d50db88df 100644 --- a/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/02-ReadLine-Effect.purs +++ b/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/02-ReadLine-Effect.purs @@ -13,8 +13,7 @@ ReadMe.md file to run it using Node (not Spago) to see what happens. -} -- new imports -import Node.ReadLine ( Interface - , createConsoleInterface, noCompletion +import Node.ReadLine ( createConsoleInterface, noCompletion , question, close) From 126c7634c15eaeec94e7eeeddb2429b4b6fd78d3 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 19 Aug 2019 18:08:05 -0700 Subject: [PATCH 13/13] Regenerate ToC for next release: ps-0.13.x-v0.18.1 --- table-of-contents.md | 2167 +++++++++++++++++++++--------------------- 1 file changed, 1084 insertions(+), 1083 deletions(-) diff --git a/table-of-contents.md b/table-of-contents.md index 702c8b04a..b7f6260eb 100644 --- a/table-of-contents.md +++ b/table-of-contents.md @@ -11,1235 +11,1236 @@ ## 00 Getting Started -- [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/ReadMe.md) -- [01 Why Learn PureScript.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md) - - [Why one should use Javascript to build programs...](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#Why-one-should-use-Javascript-to-build-programs) - - [...but not write Javascript to build it...](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#but-not-write-Javascript-to-build-it) - - [...and write Purescript instead of alternatives](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#and-write-Purescript-instead-of-alternatives) - - [Language Comparisons](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#Language-Comparisons) - - [PureScript vs TypeScript](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#PureScript-vs-TypeScript) - - [PureScript vs Elm](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#PureScript-vs-Elm) - - [PureScript vs GHCJS](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#PureScript-vs-GHCJS) - - [The Strengths of PureScript](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#The-Strengths-of-PureScript) - - [Strongly Adheres to the Functional Programming Paradigm](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#Strongly-Adheres-to-the-Functional-Programming-Paradigm) - - [Powerful Static Type System](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#Powerful-Static-Type-System) - - [Immutable Persistent Data Structures by Default](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#Immutable-Persistent-Data-Structures-by-Default) - - [Multiple Backends with Easy Foreign Function Interface](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#Multiple-Backends-with-Easy-Foreign-Function-Interface) - - [FAQ: Answering Miscellaneous Questions People May Have](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#FAQ-Answering-Miscellaneous-Questions-People-May-Have) - - [Is the price of the steep learning curve worth the benefits of using PureScript in code?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#Is-the-price-of-the-steep-learning-curve-worth-the-benefits-of-using-PureScript-in-code) - - [If I learn PureScript, can I get a good developer job?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#If-I-learn-PureScript-can-I-get-a-good-developer-job) - - [Should I learn PureScript now or wait until sometime later?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#Should-I-learn-PureScript-now-or-wait-until-sometime-later) - - [How long will it take me before I can write idiomatic code and be productive in PureScript?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#How-long-will-it-take-me-before-I-can-write-idiomatic-code-and-be-productive-in-PureScript) - - [If I choose to learn PureScript, will I later regret not having spent that same time learning a different compile-to-Javascript language (e.g. TypeScript, CoffeeScript, etc.) or a "compile to WebAssembly"-capable language (e.g. Rust) instead?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#If-I-choose-to-learn-PureScript-will-I-later-regret-not-having-spent-that-same-time-learning-a-different-compile-to-Javascript-language-eg-TypeScript-CoffeeScript-etc-or-a-compile-to-WebAssembly-capable-language-eg-Rust-instead) - - [How mature is the Ecosystem? Will I need to initially spend time writing/improving/documenting libraries for this language or can I immediately use libraries that are stable and mature?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#How-mature-is-the-Ecosystem-Will-I-need-to-initially-spend-time-writingimprovingdocumenting-libraries-for-this-language-or-can-I-immediately-use-libraries-that-are-stable-and-mature) - - [How hard it is to use another language's libraries via bindings?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#How-hard-it-is-to-use-another-languages-libraries-via-bindings) - - [How easy/pleasant is it to use the language's build tools (e.g. compiler, linter/type checker, dependency manager, etc.) and text editor tools (e.g. ease of setup, refactoring support, pop-up documentation, etc.)?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#How-easypleasant-is-it-to-use-the-languages-build-tools-eg-compiler-lintertype-checker-dependency-manager-etc-and-text-editor-tools-eg-ease-of-setup-refactoring-support-pop-up-documentation-etc) - - [How friendly, helpful, responsive, inspiring, determined, and collaborative are the people who use and contribute to this language and its ecosystem?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#How-friendly-helpful-responsive-inspiring-determined-and-collaborative-are-the-people-who-use-and-contribute-to-this-language-and-its-ecosystem) - - [What problems do developer teams typically encounter when migrating from Language X to PureScript and how hard are these to overcome?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/01-Why-Learn-PureScript.md#What-problems-do-developer-teams-typically-encounter-when-migrating-from-Language-X-to-PureScript-and-how-hard-are-these-to-overcome) -- [02 Install Guide.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md) - - [Getting Additional Help](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Getting-Additional-Help) - - [Setting up Purescript for the First Time](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Setting-up-Purescript-for-the-First-Time) - - [Overview](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Overview) - - [Installation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Installation) - - [Installing NPM](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Installing-NPM) - - [Manual Install](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Manual-Install) - - [NVM Install](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#NVM-Install) - - [Installing PureScript and Related Tooling](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Installing-PureScript-and-Related-Tooling) - - [Versions Used in this Project](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Versions-Used-in-this-Project) - - [Building This Project](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Building-This-Project) - - [Setting up your editor](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Setting-up-your-editor) - - [Getting IDE support (autocomplete, documentation-on-hover, etc.) in Atom](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Getting-IDE-support-autocomplete-documentation-on-hover-etc-in-Atom) - - [Dealing with IDE Server issues in Atom](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Dealing-with-IDE-Server-issues-in-Atom) - - [Setting up Module Linker](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/02-Install-Guide.md#Setting-up-Module-Linker) -- [03 The REPL.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md) - - [Preparing a Folder for the REPL](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Preparing-a-Folder-for-the-REPL) - - [Starting the REPL](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Starting-the-REPL) - - [Using the REPL](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Using-the-REPL) - - [Possible Outputted REPL Errors](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Possible-Outputted-REPL-Errors) - - [A Quick Overview of Some of the REPL Commands](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#A-Quick-Overview-of-Some-of-the-REPL-Commands) - - [Help](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Help) - - [Quit](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Quit) - - [Reload](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Reload) - - [Clear](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Clear) - - [Browse](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Browse) - - [Type](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Type) - - [Kind](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Kind) - - [Show](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Show) - - [Print](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Print) - - [Paste](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Paste) - - [Complete](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/03-The-REPL.md#Complete) -- [04 Other Important Info.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/04-Other-Important-Info.md) - - [Differences From Haskell](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/04-Other-Important-Info.md#Differences-From-Haskell) - - [Use GitHub Search to Find Things Search Engines (i.e. Google) Don't](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/04-Other-Important-Info.md#Use-GitHub-Search-to-Find-Things-Search-Engines-ie-Google-Dont) - - [Documenation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/00-Getting-Started/04-Other-Important-Info.md#Documenation) +- [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/ReadMe.md) +- [01 Why Learn PureScript.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md) + - [Why one should use Javascript to build programs...](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#Why-one-should-use-Javascript-to-build-programs) + - [...but not write Javascript to build it...](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#but-not-write-Javascript-to-build-it) + - [...and write Purescript instead of alternatives](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#and-write-Purescript-instead-of-alternatives) + - [Language Comparisons](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#Language-Comparisons) + - [PureScript vs TypeScript](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#PureScript-vs-TypeScript) + - [PureScript vs Elm](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#PureScript-vs-Elm) + - [PureScript vs GHCJS](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#PureScript-vs-GHCJS) + - [The Strengths of PureScript](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#The-Strengths-of-PureScript) + - [Strongly Adheres to the Functional Programming Paradigm](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#Strongly-Adheres-to-the-Functional-Programming-Paradigm) + - [Powerful Static Type System](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#Powerful-Static-Type-System) + - [Immutable Persistent Data Structures by Default](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#Immutable-Persistent-Data-Structures-by-Default) + - [Multiple Backends with Easy Foreign Function Interface](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#Multiple-Backends-with-Easy-Foreign-Function-Interface) + - [FAQ: Answering Miscellaneous Questions People May Have](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#FAQ-Answering-Miscellaneous-Questions-People-May-Have) + - [Is the price of the steep learning curve worth the benefits of using PureScript in code?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#Is-the-price-of-the-steep-learning-curve-worth-the-benefits-of-using-PureScript-in-code) + - [If I learn PureScript, can I get a good developer job?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#If-I-learn-PureScript-can-I-get-a-good-developer-job) + - [Should I learn PureScript now or wait until sometime later?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#Should-I-learn-PureScript-now-or-wait-until-sometime-later) + - [How long will it take me before I can write idiomatic code and be productive in PureScript?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#How-long-will-it-take-me-before-I-can-write-idiomatic-code-and-be-productive-in-PureScript) + - [If I choose to learn PureScript, will I later regret not having spent that same time learning a different compile-to-Javascript language (e.g. TypeScript, CoffeeScript, etc.) or a "compile to WebAssembly"-capable language (e.g. Rust) instead?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#If-I-choose-to-learn-PureScript-will-I-later-regret-not-having-spent-that-same-time-learning-a-different-compile-to-Javascript-language-eg-TypeScript-CoffeeScript-etc-or-a-compile-to-WebAssembly-capable-language-eg-Rust-instead) + - [How mature is the Ecosystem? Will I need to initially spend time writing/improving/documenting libraries for this language or can I immediately use libraries that are stable and mature?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#How-mature-is-the-Ecosystem-Will-I-need-to-initially-spend-time-writingimprovingdocumenting-libraries-for-this-language-or-can-I-immediately-use-libraries-that-are-stable-and-mature) + - [How hard it is to use another language's libraries via bindings?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#How-hard-it-is-to-use-another-languages-libraries-via-bindings) + - [How easy/pleasant is it to use the language's build tools (e.g. compiler, linter/type checker, dependency manager, etc.) and text editor tools (e.g. ease of setup, refactoring support, pop-up documentation, etc.)?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#How-easypleasant-is-it-to-use-the-languages-build-tools-eg-compiler-lintertype-checker-dependency-manager-etc-and-text-editor-tools-eg-ease-of-setup-refactoring-support-pop-up-documentation-etc) + - [How friendly, helpful, responsive, inspiring, determined, and collaborative are the people who use and contribute to this language and its ecosystem?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#How-friendly-helpful-responsive-inspiring-determined-and-collaborative-are-the-people-who-use-and-contribute-to-this-language-and-its-ecosystem) + - [What problems do developer teams typically encounter when migrating from Language X to PureScript and how hard are these to overcome?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/01-Why-Learn-PureScript.md#What-problems-do-developer-teams-typically-encounter-when-migrating-from-Language-X-to-PureScript-and-how-hard-are-these-to-overcome) +- [02 Install Guide.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md) + - [Getting Additional Help](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Getting-Additional-Help) + - [Setting up Purescript for the First Time](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Setting-up-Purescript-for-the-First-Time) + - [Overview](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Overview) + - [Installation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Installation) + - [Installing NPM](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Installing-NPM) + - [Manual Install](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Manual-Install) + - [NVM Install](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#NVM-Install) + - [Installing PureScript and Related Tooling](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Installing-PureScript-and-Related-Tooling) + - [Versions Used in this Project](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Versions-Used-in-this-Project) + - [Building This Project](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Building-This-Project) + - [Setting up your editor](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Setting-up-your-editor) + - [Getting IDE support (autocomplete, documentation-on-hover, etc.) in Atom](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Getting-IDE-support-autocomplete-documentation-on-hover-etc-in-Atom) + - [Dealing with IDE Server issues in Atom](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Dealing-with-IDE-Server-issues-in-Atom) + - [Setting up Module Linker](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/02-Install-Guide.md#Setting-up-Module-Linker) +- [03 The REPL.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md) + - [Preparing a Folder for the REPL](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Preparing-a-Folder-for-the-REPL) + - [Starting the REPL](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Starting-the-REPL) + - [Using the REPL](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Using-the-REPL) + - [Possible Outputted REPL Errors](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Possible-Outputted-REPL-Errors) + - [A Quick Overview of Some of the REPL Commands](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#A-Quick-Overview-of-Some-of-the-REPL-Commands) + - [Help](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Help) + - [Quit](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Quit) + - [Reload](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Reload) + - [Clear](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Clear) + - [Browse](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Browse) + - [Type](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Type) + - [Kind](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Kind) + - [Show](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Show) + - [Print](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Print) + - [Paste](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Paste) + - [Complete](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/03-The-REPL.md#Complete) +- [04 Other Important Info.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/04-Other-Important-Info.md) + - [Functional Programming Jargon](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/04-Other-Important-Info.md#Functional-Programming-Jargon) + - [Differences From Haskell](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/04-Other-Important-Info.md#Differences-From-Haskell) + - [Use GitHub Search to Find Things Search Engines (i.e. Google) Don't](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/04-Other-Important-Info.md#Use-GitHub-Search-to-Find-Things-Search-Engines-ie-Google-Dont) + - [Documenation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/00-Getting-Started/04-Other-Important-Info.md#Documenation) ## 01 FP Philosophical Foundations -- [01 Composition Everywhere.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/01-Composition-Everywhere.md) - - [Composing Types Algebraically](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/01-Composition-Everywhere.md#Composing-Types-Algebraically) - - [Composing Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/01-Composition-Everywhere.md#Composing-Functions) -- [02 Pure vs Impure Functions.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/02-Pure-vs-Impure-Functions.md) - - [Visual Overview](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/02-Pure-vs-Impure-Functions.md#Visual-Overview) - - [General Overview](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/02-Pure-vs-Impure-Functions.md#General-Overview) - - [Properties](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/02-Pure-vs-Impure-Functions.md#Properties) - - [Graph Reduction](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/02-Pure-vs-Impure-Functions.md#Graph-Reduction) - - [Execution vs Description and Interpretation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/02-Pure-vs-Impure-Functions.md#Execution-vs-Description-and-Interpretation) -- [03 Data Types.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/03-Data-Types.md) - - [Principles](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/03-Data-Types.md#Principles) - - [Big O Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/03-Data-Types.md#Big-O-Notation) -- [04 Lazy vs Strict.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/04-Lazy-vs-Strict.md) -- [05 Looping via Recursion.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md) - - [For `i` until `condition` do `computation` and then increment `i`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#For-i-until-condition-do-computation-and-then-increment-i) - - [Stack-Safe](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#Stack-Safe) - - [For ... Break If](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#For--Break-If) - - [Short-Circuiting](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#Short-Circuiting) - - [Other Loops](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#Other-Loops) - - [While](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#While) - - [For `value` in `collection`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#For-value-in-collection) -- [06 Type Classes.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md) - - [What Problem Do Type Classes Solve?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md#What-Problem-Do-Type-Classes-Solve) - - [Where Do Type Classes Come From?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md#Where-Do-Type-Classes-Come-From) - - [Type Classes as Encodings of Mathematical Concepts](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md#Type-Classes-as-Encodings-of-Mathematical-Concepts) - - [Examples](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md#Examples) - - [Type Classes and Dual Relationships](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md#Type-Classes-and-Dual-Relationships) - - [Type Class Instances: Global vs Local](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md#Type-Class-Instances-Global-vs-Local) - - [Benefits of Global Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md#Benefits-of-Global-Instances) - - [Costs of Global Instances: Orphan Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md#Costs-of-Global-Instances-Orphan-Instances) - - [Why Orphan Instances Are Painful](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md#Why-Orphan-Instances-Are-Painful) - - [Summary of Global vs Local Type Class Instances' Tradeoffs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md#Summary-of-Global-vs-Local-Type-Class-Instances-Tradeoffs) - - [Non-Category Theory Usages of Type Classes](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md#Non-Category-Theory-Usages-of-Type-Classes) - - [Debate: Must Type Classes Always Be Lawful?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/06-Type-Classes.md#Debate-Must-Type-Classes-Always-Be-Lawful) -- [07 FP: The Big Picture.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/01-FP-Philosophical-Foundations/07-FP--The-Big-Picture.md) +- [01 Composition Everywhere.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/01-Composition-Everywhere.md) + - [Composing Types Algebraically](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/01-Composition-Everywhere.md#Composing-Types-Algebraically) + - [Composing Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/01-Composition-Everywhere.md#Composing-Functions) +- [02 Pure vs Impure Functions.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/02-Pure-vs-Impure-Functions.md) + - [Visual Overview](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/02-Pure-vs-Impure-Functions.md#Visual-Overview) + - [General Overview](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/02-Pure-vs-Impure-Functions.md#General-Overview) + - [Properties](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/02-Pure-vs-Impure-Functions.md#Properties) + - [Graph Reduction](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/02-Pure-vs-Impure-Functions.md#Graph-Reduction) + - [Execution vs Description and Interpretation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/02-Pure-vs-Impure-Functions.md#Execution-vs-Description-and-Interpretation) +- [03 Data Types.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/03-Data-Types.md) + - [Principles](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/03-Data-Types.md#Principles) + - [Big O Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/03-Data-Types.md#Big-O-Notation) +- [04 Lazy vs Strict.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/04-Lazy-vs-Strict.md) +- [05 Looping via Recursion.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md) + - [For `i` until `condition` do `computation` and then increment `i`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#For-i-until-condition-do-computation-and-then-increment-i) + - [Stack-Safe](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#Stack-Safe) + - [For ... Break If](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#For--Break-If) + - [Short-Circuiting](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#Short-Circuiting) + - [Other Loops](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#Other-Loops) + - [While](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#While) + - [For `value` in `collection`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/05-Looping-via-Recursion.md#For-value-in-collection) +- [06 Type Classes.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md) + - [What Problem Do Type Classes Solve?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md#What-Problem-Do-Type-Classes-Solve) + - [Where Do Type Classes Come From?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md#Where-Do-Type-Classes-Come-From) + - [Type Classes as Encodings of Mathematical Concepts](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md#Type-Classes-as-Encodings-of-Mathematical-Concepts) + - [Examples](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md#Examples) + - [Type Classes and Dual Relationships](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md#Type-Classes-and-Dual-Relationships) + - [Type Class Instances: Global vs Local](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md#Type-Class-Instances-Global-vs-Local) + - [Benefits of Global Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md#Benefits-of-Global-Instances) + - [Costs of Global Instances: Orphan Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md#Costs-of-Global-Instances-Orphan-Instances) + - [Why Orphan Instances Are Painful](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md#Why-Orphan-Instances-Are-Painful) + - [Summary of Global vs Local Type Class Instances' Tradeoffs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md#Summary-of-Global-vs-Local-Type-Class-Instances-Tradeoffs) + - [Non-Category Theory Usages of Type Classes](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md#Non-Category-Theory-Usages-of-Type-Classes) + - [Debate: Must Type Classes Always Be Lawful?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/06-Type-Classes.md#Debate-Must-Type-Classes-Always-Be-Lawful) +- [07 FP: The Big Picture.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/01-FP-Philosophical-Foundations/07-FP--The-Big-Picture.md) ## 02 Build Tools -- [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/Readme.md) - - [History: How We Got Here](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/Readme.md#History-How-We-Got-Here) - - [Phase 1: Initial Tooling](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/Readme.md#Phase-1-Initial-Tooling) - - [Phase 2: The `psc-package` Experiment](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/Readme.md#Phase-2-The-psc-package-Experiment) - - [Phase 3: Improving the `psc-package` Developer Workflow via `Spago`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/Readme.md#Phase-3-Improving-the-psc-package-Developer-Workflow-via-Spago) - - [Overview of Tools](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/Readme.md#Overview-of-Tools) +- [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/Readme.md) + - [History: How We Got Here](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/Readme.md#History-How-We-Got-Here) + - [Phase 1: Initial Tooling](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/Readme.md#Phase-1-Initial-Tooling) + - [Phase 2: The `psc-package` Experiment](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/Readme.md#Phase-2-The-psc-package-Experiment) + - [Phase 3: Improving the `psc-package` Developer Workflow via `Spago`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/Readme.md#Phase-3-Improving-the-psc-package-Developer-Workflow-via-Spago) + - [Overview of Tools](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/Readme.md#Overview-of-Tools) - 01 Dependency Managers - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/ReadMe.md) - - [Dependency Managers Compared](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/ReadMe.md#Dependency-Managers-Compared) - - [01 Bower Explained.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md) - - [What is it?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#What-is-it) - - [Why Use It?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Why-Use-It) - - [Why doesn't Purescript use `npm`?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Why-doesnt-Purescript-use-npm) - - [Problem Points?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Problem-Points) - - [Solution to Most Common Bower Problem: The Cache Mechanism](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Solution-to-Most-Common-Bower-Problem-The-Cache-Mechanism) - - [Horrible User Experience Occurs After a Breaking Change Release](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Horrible-User-Experience-Occurs-After-a-Breaking-Change-Release) - - [Annoyance Defined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Annoyance-Defined) - - [Recommended Guidelines](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Recommended-Guidelines) - - [02 Spago Explained.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md) - - [What is it?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md#What-is-it) - - [Why Use It?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md#Why-Use-It) - - [How does it work?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md#How-does-it-work) - - [Spago Terms](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md#Spago-Terms) - - [The Process It Uses](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md#The-Process-It-Uses) - - [Problem Points?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md#Problem-Points) - - [03 Why We Need Both.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/01-Dependency-Managers/03-Why-We-Need-Both.md) -- [02 Build Tools.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/02-Build-Tools.md) -- [03 CLI Programs: All Options Explained.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/03-CLI-Programs--All-Options-Explained.md) - - [Purs (PureScript Compiler)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/03-CLI-Programs--All-Options-Explained.md#Purs-PureScript-Compiler) - - [Spago (PureScript Build Tool & Dependency Manager)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/03-CLI-Programs--All-Options-Explained.md#Spago-PureScript-Build-Tool--Dependency-Manager) - - [Pulp (PureScript Build Tool)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/03-CLI-Programs--All-Options-Explained.md#Pulp-PureScript-Build-Tool) -- [04 Bower: Project Workflow.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/04-Bower--Project-Workflow.md) - - [Create the project](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/04-Bower--Project-Workflow.md#Create-the-project) - - [Install dependencies](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/04-Bower--Project-Workflow.md#Install-dependencies) - - [Write the Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/04-Bower--Project-Workflow.md#Write-the-Code) - - [Publish the Package for the First Time](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/04-Bower--Project-Workflow.md#Publish-the-Package-for-the-First-Time) - - [Publish a New Version of an Already-Published Package](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/04-Bower--Project-Workflow.md#Publish-a-New-Version-of-an-Already-Published-Package) -- [05 Spago: Project Workflow.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/05-Spago--Project-Workflow.md) - - [Create the project](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/05-Spago--Project-Workflow.md#Create-the-project) - - [Configure the Package Set](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/05-Spago--Project-Workflow.md#Configure-the-Package-Set) - - [Freeze the Package Set](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/05-Spago--Project-Workflow.md#Freeze-the-Package-Set) - - [Install Dependencies](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/05-Spago--Project-Workflow.md#Install-Dependencies) - - [Write the Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/05-Spago--Project-Workflow.md#Write-the-Code) - - [Build the Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/05-Spago--Project-Workflow.md#Build-the-Code) -- [06 Continuous Integration.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/02-Build-Tools/06-Continuous-Integration.md) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/ReadMe.md) + - [Dependency Managers Compared](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/ReadMe.md#Dependency-Managers-Compared) + - [01 Bower Explained.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md) + - [What is it?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#What-is-it) + - [Why Use It?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Why-Use-It) + - [Why doesn't Purescript use `npm`?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Why-doesnt-Purescript-use-npm) + - [Problem Points?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Problem-Points) + - [Solution to Most Common Bower Problem: The Cache Mechanism](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Solution-to-Most-Common-Bower-Problem-The-Cache-Mechanism) + - [Horrible User Experience Occurs After a Breaking Change Release](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Horrible-User-Experience-Occurs-After-a-Breaking-Change-Release) + - [Annoyance Defined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Annoyance-Defined) + - [Recommended Guidelines](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/01-Bower-Explained.md#Recommended-Guidelines) + - [02 Spago Explained.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md) + - [What is it?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md#What-is-it) + - [Why Use It?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md#Why-Use-It) + - [How does it work?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md#How-does-it-work) + - [Spago Terms](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md#Spago-Terms) + - [The Process It Uses](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md#The-Process-It-Uses) + - [Problem Points?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/02-Spago-Explained.md#Problem-Points) + - [03 Why We Need Both.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/01-Dependency-Managers/03-Why-We-Need-Both.md) +- [02 Build Tools.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/02-Build-Tools.md) +- [03 CLI Programs: All Options Explained.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/03-CLI-Programs--All-Options-Explained.md) + - [Purs (PureScript Compiler)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/03-CLI-Programs--All-Options-Explained.md#Purs-PureScript-Compiler) + - [Spago (PureScript Build Tool & Dependency Manager)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/03-CLI-Programs--All-Options-Explained.md#Spago-PureScript-Build-Tool--Dependency-Manager) + - [Pulp (PureScript Build Tool)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/03-CLI-Programs--All-Options-Explained.md#Pulp-PureScript-Build-Tool) +- [04 Bower: Project Workflow.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/04-Bower--Project-Workflow.md) + - [Create the project](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/04-Bower--Project-Workflow.md#Create-the-project) + - [Install dependencies](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/04-Bower--Project-Workflow.md#Install-dependencies) + - [Write the Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/04-Bower--Project-Workflow.md#Write-the-Code) + - [Publish the Package for the First Time](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/04-Bower--Project-Workflow.md#Publish-the-Package-for-the-First-Time) + - [Publish a New Version of an Already-Published Package](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/04-Bower--Project-Workflow.md#Publish-a-New-Version-of-an-Already-Published-Package) +- [05 Spago: Project Workflow.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/05-Spago--Project-Workflow.md) + - [Create the project](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/05-Spago--Project-Workflow.md#Create-the-project) + - [Configure the Package Set](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/05-Spago--Project-Workflow.md#Configure-the-Package-Set) + - [Freeze the Package Set](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/05-Spago--Project-Workflow.md#Freeze-the-Package-Set) + - [Install Dependencies](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/05-Spago--Project-Workflow.md#Install-Dependencies) + - [Write the Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/05-Spago--Project-Workflow.md#Write-the-Code) + - [Build the Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/05-Spago--Project-Workflow.md#Build-the-Code) +- [06 Continuous Integration.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/02-Build-Tools/06-Continuous-Integration.md) ## 11 Syntax -- [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/Readme.md) +- [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/Readme.md) - 01 Basic Syntax - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/ReadMe.md) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/ReadMe.md) - src - - [00 Comments.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/00-Comments.purs) + - [00 Comments.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/00-Comments.purs) - 01 Preliminary Concepts - - [01 Value Function Data Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/01-Value-Function-Data-Syntax.purs) - - [02 Explaining Kinds.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/02-Explaining-Kinds.md) - - [What are Kinds?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/02-Explaining-Kinds.md#What-are-Kinds) - - [Concrete Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/02-Explaining-Kinds.md#Concrete-Types) - - [Higher-Kinded Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/02-Explaining-Kinds.md#Higher-Kinded-Types) - - [Table of Inferred Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/02-Explaining-Kinds.md#Table-of-Inferred-Types) - - [03 The Prim Module.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/03-The-Prim-Module.purs) + - [01 Value Function Data Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/01-Value-Function-Data-Syntax.purs) + - [02 Explaining Kinds.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/02-Explaining-Kinds.md) + - [What are Kinds?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/02-Explaining-Kinds.md#What-are-Kinds) + - [Concrete Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/02-Explaining-Kinds.md#Concrete-Types) + - [Higher-Kinded Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/02-Explaining-Kinds.md#Higher-Kinded-Types) + - [Table of Inferred Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/02-Explaining-Kinds.md#Table-of-Inferred-Types) + - [03 The Prim Module.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/01-Preliminary-Concepts/03-The-Prim-Module.purs) - 02 Data and Functions - - [01 Defining Values and Functions.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/01-Defining-Values-and-Functions.purs) - - [02 Function Currying.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/02-Function-Currying.purs) - - [03 Abbreviated Function Body.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/03-Abbreviated-Function-Body.purs) - - [04 Keyword: Data.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/04-Keyword--Data.purs) - - [05 Pattern Matching in Functions.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/05-Pattern-Matching-in-Functions.purs) - - [06 Unicode Syntax Support.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/06-Unicode-Syntax-Support.purs) + - [01 Defining Values and Functions.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/01-Defining-Values-and-Functions.purs) + - [02 Function Currying.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/02-Function-Currying.purs) + - [03 Abbreviated Function Body.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/03-Abbreviated-Function-Body.purs) + - [04 Keyword: Data.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/04-Keyword--Data.purs) + - [05 Pattern Matching in Functions.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/05-Pattern-Matching-in-Functions.purs) + - [06 Unicode Syntax Support.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/06-Unicode-Syntax-Support.purs) - 07 Some Keywords and Their Syntax - - [01 Keyword: Forall.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/07-Some-Keywords-and-Their-Syntax/01-Keyword--Forall.purs) - - [02 Keyword: Type.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/07-Some-Keywords-and-Their-Syntax/02-Keyword--Type.purs) - - [03 Keywords: Case expression of.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/07-Some-Keywords-and-Their-Syntax/03-Keywords--Case-expression-of.purs) - - [04 Keywords: Where and Let In.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/07-Some-Keywords-and-Their-Syntax/04-Keywords--Where-and-Let-In.purs) - - [05 Keywords: If Then Else.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/07-Some-Keywords-and-Their-Syntax/05-Keywords--If-Then-Else.purs) - - [06 Indentation Rules.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/07-Some-Keywords-and-Their-Syntax/06-Indentation-Rules.purs) - - [08 Functions and Data with Higher Kinded Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/08-Functions-and-Data-with-Higher-Kinded-Types.purs) + - [01 Keyword: Forall.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/07-Some-Keywords-and-Their-Syntax/01-Keyword--Forall.purs) + - [02 Keyword: Type.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/07-Some-Keywords-and-Their-Syntax/02-Keyword--Type.purs) + - [03 Keywords: Case expression of.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/07-Some-Keywords-and-Their-Syntax/03-Keywords--Case-expression-of.purs) + - [04 Keywords: Where and Let In.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/07-Some-Keywords-and-Their-Syntax/04-Keywords--Where-and-Let-In.purs) + - [05 Keywords: If Then Else.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/07-Some-Keywords-and-Their-Syntax/05-Keywords--If-Then-Else.purs) + - [06 Indentation Rules.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/07-Some-Keywords-and-Their-Syntax/06-Indentation-Rules.purs) + - [08 Functions and Data with Higher Kinded Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/08-Functions-and-Data-with-Higher-Kinded-Types.purs) - 09 Records - - [01 Basic Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/01-Basic-Syntax.purs) - - [Create Records](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/01-Basic-Syntax.purs#L34) - - [Get Fields in records](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/01-Basic-Syntax.purs#L87) - - [Overwrite Fields in Records](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/01-Basic-Syntax.purs#L92) - - [Nested Records](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/01-Basic-Syntax.purs#L124) - - [Pattern Matching on Records](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/01-Basic-Syntax.purs#L148) - - [02 Quoted Key Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/02-Quoted-Key-Syntax.purs) - - [03 Row Polymorphism.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/03-Row-Polymorphism.purs) + - [01 Basic Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/01-Basic-Syntax.purs) + - [Create Records](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/01-Basic-Syntax.purs#L34) + - [Get Fields in records](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/01-Basic-Syntax.purs#L87) + - [Overwrite Fields in Records](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/01-Basic-Syntax.purs#L92) + - [Nested Records](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/01-Basic-Syntax.purs#L124) + - [Pattern Matching on Records](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/01-Basic-Syntax.purs#L148) + - [02 Quoted Key Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/02-Quoted-Key-Syntax.purs) + - [03 Row Polymorphism.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/09-Records/03-Row-Polymorphism.purs) - 11 Infix Notation - - [01 Regular.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/11-Infix-Notation/01-Regular.purs) - - [02 Extended.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/11-Infix-Notation/02-Extended.purs) + - [01 Regular.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/11-Infix-Notation/01-Regular.purs) + - [02 Extended.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/02-Data-and-Functions/11-Infix-Notation/02-Extended.purs) - 03 TypeClasses and Newtypes - - [01 Single Paramter.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/01-Single-Paramter.purs) - - [02 Constraining Types Using Typeclasses.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/02-Constraining-Types-Using-Typeclasses.purs) - - [03 Dictionaries: How Type Classes Work.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/03-Dictionaries--How-Type-Classes-Work.purs) - - [04 Typeclass Relationships.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/04-Typeclass-Relationships.purs) - - [05 Typeclasses with No Definitions.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/05-Typeclasses-with-No-Definitions.purs) - - [06 Multi Paramter.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/06-Multi-Paramter.purs) - - [07 Functional Dependencies.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/07-Functional-Dependencies.purs) - - [10 Keyword: Newtype.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/10-Keyword--Newtype.purs) - - [21 Deriving Common Typeclass Instances for Custom Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/21-Deriving-Common-Typeclass-Instances-for-Custom-Types.purs) - - [22 Deriving Typeclass Instances for Newtyped Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/22-Deriving-Typeclass-Instances-for-Newtyped-Types.purs) - - [04 Documentation.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/04-Documentation.purs) + - [01 Single Paramter.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/01-Single-Paramter.purs) + - [02 Constraining Types Using Typeclasses.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/02-Constraining-Types-Using-Typeclasses.purs) + - [03 Dictionaries: How Type Classes Work.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/03-Dictionaries--How-Type-Classes-Work.purs) + - [04 Typeclass Relationships.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/04-Typeclass-Relationships.purs) + - [05 Typeclasses with No Definitions.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/05-Typeclasses-with-No-Definitions.purs) + - [06 Multi Paramter.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/06-Multi-Paramter.purs) + - [07 Functional Dependencies.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/07-Functional-Dependencies.purs) + - [10 Keyword: Newtype.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/10-Keyword--Newtype.purs) + - [21 Deriving Common Typeclass Instances for Custom Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/21-Deriving-Common-Typeclass-Instances-for-Custom-Types.purs) + - [22 Deriving Typeclass Instances for Newtyped Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/03-TypeClasses-and-Newtypes/22-Deriving-Typeclass-Instances-for-Newtyped-Types.purs) + - [04 Documentation.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/04-Documentation.purs) - 05 Special Compiler Features - - [01 Typed Holes.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/05-Special-Compiler-Features/01-Typed-Holes.purs) - - [02 Typed Wildcards.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/01-Basic-Syntax/src/05-Special-Compiler-Features/02-Typed-Wildcards.purs) + - [01 Typed Holes.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/05-Special-Compiler-Features/01-Typed-Holes.purs) + - [02 Typed Wildcards.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/01-Basic-Syntax/src/05-Special-Compiler-Features/02-Typed-Wildcards.purs) - 02 Foreign Function Interface - - [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/02-Foreign-Function-Interface/Readme.md) - - [Alternate Backends](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/02-Foreign-Function-Interface/Readme.md#Alternate-Backends) - - [Syntax](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/02-Foreign-Function-Interface/Readme.md#Syntax) + - [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/02-Foreign-Function-Interface/Readme.md) + - [Alternate Backends](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/02-Foreign-Function-Interface/Readme.md#Alternate-Backends) + - [Syntax](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/02-Foreign-Function-Interface/Readme.md#Syntax) - src - - [Same File Name.js](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/02-Foreign-Function-Interface/src/Same-File-Name.js) - - [Same File Name.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/02-Foreign-Function-Interface/src/Same-File-Name.purs) + - [Same File Name.js](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/02-Foreign-Function-Interface/src/Same-File-Name.js) + - [Same File Name.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/02-Foreign-Function-Interface/src/Same-File-Name.purs) - 03 Type Level Programming Syntax - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/ReadMe.md) - - [Other Learning Sources](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/ReadMe.md#Other-Learning-Sources) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/ReadMe.md) + - [Other Learning Sources](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/ReadMe.md#Other-Learning-Sources) - src - - [01 An Overview of Terms and Concepts.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md) - - [Comparison](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Comparison) - - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Definition) - - [What Are Types and Functions?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#What-Are-Types-and-Functions) - - [Types Reexamined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Types-Reexamined) - - [Functions Reexamined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Functions-Reexamined) - - [Kinds Redefined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Kinds-Redefined) - - [Summary of Inferred Kinds](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Summary-of-Inferred-Kinds) - - [Type-Level Programming Flow](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Type-Level-Programming-Flow) - - [Related Papers](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Related-Papers) + - [01 An Overview of Terms and Concepts.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md) + - [Comparison](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Comparison) + - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Definition) + - [What Are Types and Functions?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#What-Are-Types-and-Functions) + - [Types Reexamined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Types-Reexamined) + - [Functions Reexamined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Functions-Reexamined) + - [Kinds Redefined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Kinds-Redefined) + - [Summary of Inferred Kinds](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Summary-of-Inferred-Kinds) + - [Type-Level Programming Flow](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Type-Level-Programming-Flow) + - [Related Papers](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/01-An-Overview-of-Terms-and-Concepts.md#Related-Papers) - 02 Basic Syntax - - [01 Defining Custom Kinds.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/01-Defining-Custom-Kinds.purs) - - [02 Hidden Kinds Desugared.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/02-Hidden-Kinds-Desugared.purs) + - [01 Defining Custom Kinds.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/01-Defining-Custom-Kinds.purs) + - [02 Hidden Kinds Desugared.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/02-Hidden-Kinds-Desugared.purs) - 03 Defining Functions - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/ReadMe.md) - - [Solve for X](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/ReadMe.md#Solve-for-X) - - [Unification](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/ReadMe.md#Unification) - - [Functional Dependencies Reexamined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/ReadMe.md#Functional-Dependencies-Reexamined) - - [Prolog Links](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/ReadMe.md#Prolog-Links) - - [Works Cited](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/ReadMe.md#Works-Cited) - - [01 Single Arg Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/01-Single-Arg-Syntax.purs) - - [02 Multi Arg Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/02-Multi-Arg-Syntax.purs) - - [03 Pattern Matching Using Instances.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/03-Pattern-Matching-Using-Instances.purs) - - [04 Pattern Matching Using Instance Chains.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/04-Pattern-Matching-Using-Instance-Chains.purs) - - [04 Reflection.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/04-Reflection.purs) - - [05 Reification.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/05-Reification.purs) - - [10 Conventions.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/10-Conventions.purs) - - [03 Symbol Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/03-Symbol-Syntax.purs) - - [04 Row Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/03-Type-Level-Programming-Syntax/src/04-Row-Syntax.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/ReadMe.md) + - [Solve for X](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/ReadMe.md#Solve-for-X) + - [Unification](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/ReadMe.md#Unification) + - [Functional Dependencies Reexamined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/ReadMe.md#Functional-Dependencies-Reexamined) + - [Prolog Links](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/ReadMe.md#Prolog-Links) + - [Works Cited](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/ReadMe.md#Works-Cited) + - [01 Single Arg Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/01-Single-Arg-Syntax.purs) + - [02 Multi Arg Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/02-Multi-Arg-Syntax.purs) + - [03 Pattern Matching Using Instances.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/03-Pattern-Matching-Using-Instances.purs) + - [04 Pattern Matching Using Instance Chains.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/03-Defining-Functions/04-Pattern-Matching-Using-Instance-Chains.purs) + - [04 Reflection.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/04-Reflection.purs) + - [05 Reification.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/05-Reification.purs) + - [10 Conventions.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/02-Basic-Syntax/10-Conventions.purs) + - [03 Symbol Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/03-Symbol-Syntax.purs) + - [04 Row Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/03-Type-Level-Programming-Syntax/src/04-Row-Syntax.purs) - 04 Module Syntax - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/04-Module-Syntax/ReadMe.md) - - [File Location Conventions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/04-Module-Syntax/ReadMe.md#File-Location-Conventions) - - [Real World Naming Conventions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/04-Module-Syntax/ReadMe.md#Real-World-Naming-Conventions) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/04-Module-Syntax/ReadMe.md) + - [File Location Conventions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/04-Module-Syntax/ReadMe.md#File-Location-Conventions) + - [Real World Naming Conventions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/04-Module-Syntax/ReadMe.md#Real-World-Naming-Conventions) - src - - [01 Basic Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/04-Module-Syntax/src/01-Basic-Syntax.purs) - - [02 Basic Exporting.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/04-Module-Syntax/src/02-Basic-Exporting.purs) - - [03 Basic Importing.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/04-Module-Syntax/src/03-Basic-Importing.purs) - - [04 Resolving Naming Conflicts Using Keyword: Hiding.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/04-Module-Syntax/src/04-Resolving-Naming-Conflicts-Using-Keyword--Hiding.purs) - - [04 Resolving Naming Conflicts Using Module Aliases.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/04-Module-Syntax/src/04-Resolving-Naming-Conflicts-Using-Module-Aliases.purs) - - [05 Re exporting Modules or Submodules.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/04-Module-Syntax/src/05-Re-exporting-Modules-or-Submodules.purs) - - [06 Exporting Entire Current Module.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/04-Module-Syntax/src/06-Exporting-Entire-Current-Module.purs) - - [11 Full Module Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/04-Module-Syntax/src/11-Full-Module-Syntax.purs) + - [01 Basic Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/04-Module-Syntax/src/01-Basic-Syntax.purs) + - [02 Basic Exporting.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/04-Module-Syntax/src/02-Basic-Exporting.purs) + - [03 Basic Importing.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/04-Module-Syntax/src/03-Basic-Importing.purs) + - [04 Resolving Naming Conflicts Using Keyword: Hiding.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/04-Module-Syntax/src/04-Resolving-Naming-Conflicts-Using-Keyword--Hiding.purs) + - [04 Resolving Naming Conflicts Using Module Aliases.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/04-Module-Syntax/src/04-Resolving-Naming-Conflicts-Using-Module-Aliases.purs) + - [05 Re exporting Modules or Submodules.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/04-Module-Syntax/src/05-Re-exporting-Modules-or-Submodules.purs) + - [06 Exporting Entire Current Module.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/04-Module-Syntax/src/06-Exporting-Entire-Current-Module.purs) + - [11 Full Module Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/04-Module-Syntax/src/11-Full-Module-Syntax.purs) - 05 Prelude Syntax - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/05-Prelude-Syntax/ReadMe.md) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/05-Prelude-Syntax/ReadMe.md) - src - - [01 Discard.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/05-Prelude-Syntax/src/01-Discard.md) - - [02 Do Notation.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/05-Prelude-Syntax/src/02-Do-Notation.purs) - - [03 Reading Do As Nested Binds.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/05-Prelude-Syntax/src/03-Reading-Do-As-Nested-Binds.md) - - [04 Ado Notation.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/05-Prelude-Syntax/src/04-Ado-Notation.purs) - - [05 Natural Transformation.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/05-Prelude-Syntax/src/05-Natural-Transformation.purs) + - [01 Discard.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/05-Prelude-Syntax/src/01-Discard.md) + - [02 Do Notation.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/05-Prelude-Syntax/src/02-Do-Notation.purs) + - [03 Reading Do As Nested Binds.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/05-Prelude-Syntax/src/03-Reading-Do-As-Nested-Binds.md) + - [04 Ado Notation.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/05-Prelude-Syntax/src/04-Ado-Notation.purs) + - [05 Natural Transformation.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/05-Prelude-Syntax/src/05-Natural-Transformation.purs) - 06 Modifying Do Ado Syntax Sugar - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/ReadMe.md) - - [The Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/ReadMe.md#The-Problem) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/ReadMe.md) + - [The Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/ReadMe.md#The-Problem) - src - - [01 Rebindable Ado.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/01-Rebindable-Ado.purs) - - [01 Rebindable Do.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/01-Rebindable-Do.purs) - - [11 Introducing Qualified Do Ado.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/11-Introducing-Qualified-Do-Ado.md) - - [Possible Readability Issue with Rebindable Do/Ado Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/11-Introducing-Qualified-Do-Ado.md#Possible-Readability-Issue-with-Rebindable-DoAdo-Notation) - - [Problems with Rebindable Do/Ado Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/11-Introducing-Qualified-Do-Ado.md#Problems-with-Rebindable-DoAdo-Notation) - - [12 MonadLikeTypeClasses.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/12-MonadLikeTypeClasses.purs) - - [13 Qualified Do.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/13-Qualified-Do.purs) - - [14 Qualified Ado.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/14-Qualified-Ado.purs) + - [01 Rebindable Ado.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/01-Rebindable-Ado.purs) + - [01 Rebindable Do.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/01-Rebindable-Do.purs) + - [11 Introducing Qualified Do Ado.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/11-Introducing-Qualified-Do-Ado.md) + - [Possible Readability Issue with Rebindable Do/Ado Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/11-Introducing-Qualified-Do-Ado.md#Possible-Readability-Issue-with-Rebindable-DoAdo-Notation) + - [Problems with Rebindable Do/Ado Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/11-Introducing-Qualified-Do-Ado.md#Problems-with-Rebindable-DoAdo-Notation) + - [12 MonadLikeTypeClasses.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/12-MonadLikeTypeClasses.purs) + - [13 Qualified Do.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/13-Qualified-Do.purs) + - [14 Qualified Ado.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/11-Syntax/06-Modifying-Do-Ado-Syntax-Sugar/src/14-Qualified-Ado.purs) ## 21 Hello World -- [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/Readme.md) - - [Helpful Links](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/Readme.md#Helpful-Links) - - [Other Learning Resources](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/Readme.md#Other-Learning-Resources) - - [Purescript](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/Readme.md#Purescript) - - [JavaScript](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/Readme.md#JavaScript) - - [Haskell](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/Readme.md#Haskell) - - [Miscellaneous Links](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/Readme.md#Miscellaneous-Links) +- [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/Readme.md) + - [Helpful Links](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/Readme.md#Helpful-Links) + - [Other Learning Resources](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/Readme.md#Other-Learning-Resources) + - [Purescript](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/Readme.md#Purescript) + - [JavaScript](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/Readme.md#JavaScript) + - [Haskell](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/Readme.md#Haskell) + - [Miscellaneous Links](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/Readme.md#Miscellaneous-Links) - 02 Prelude ish - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/ReadMe.md) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/ReadMe.md) - 01 Basic FP Data Types - - [01 Maybe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/01-Basic-FP-Data-Types/01-Maybe.md) - - [02 Either and Tuple.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/01-Basic-FP-Data-Types/02-Either-and-Tuple.md) - - [Either](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/01-Basic-FP-Data-Types/02-Either-and-Tuple.md#Either) - - [Tuple](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/01-Basic-FP-Data-Types/02-Either-and-Tuple.md#Tuple) - - [03 List.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/01-Basic-FP-Data-Types/03-List.md) + - [01 Maybe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/01-Basic-FP-Data-Types/01-Maybe.md) + - [02 Either and Tuple.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/01-Basic-FP-Data-Types/02-Either-and-Tuple.md) + - [Either](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/01-Basic-FP-Data-Types/02-Either-and-Tuple.md#Either) + - [Tuple](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/01-Basic-FP-Data-Types/02-Either-and-Tuple.md#Tuple) + - [03 List.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/01-Basic-FP-Data-Types/03-List.md) - 02 Prelude - - [01 Useful Types.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/01-Useful-Types.md) - - [Void](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/01-Useful-Types.md#Void) - - [Unit](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/01-Useful-Types.md#Unit) - - [Natural Transformations](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/01-Useful-Types.md#Natural-Transformations) - - [02 Useful Functions.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/02-Useful-Functions.md) - - [Const](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/02-Useful-Functions.md#Const) - - [Flip](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/02-Useful-Functions.md#Flip) - - [Apply](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/02-Useful-Functions.md#Apply) - - [Other Less-Used Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/02-Useful-Functions.md#Other-Less-Used-Functions) - - [03 Preludes Type Classes.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/03-Preludes-Type-Classes.md) - - [Relationships](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/03-Preludes-Type-Classes.md#Relationships) - - [Tricks for Implementing a Type Class Instance](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/03-Preludes-Type-Classes.md#Tricks-for-Implementing-a-Type-Class-Instance) - - [04 Laws.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/04-Laws.md) - - [05 Objecty: Show and Equal to Bounded.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/05-Objecty--Show-and-Equal-to-Bounded.md) - - [Show, Equal, Ord, Bounded](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/05-Objecty--Show-and-Equal-to-Bounded.md#Show-Equal-Ord-Bounded) - - [Useful Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/05-Objecty--Show-and-Equal-to-Bounded.md#Useful-Derived-Functions) - - [06 Arrows: Semigroupoid and Category.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/06-Arrows--Semigroupoid-and-Category.md) - - [Cleaner Function Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/06-Arrows--Semigroupoid-and-Category.md#Cleaner-Function-Notation) - - [Generalizing to More Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/06-Arrows--Semigroupoid-and-Category.md#Generalizing-to-More-Types) - - [07 Appendable: Semigroup to Monoid.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/07-Appendable--Semigroup-to-Monoid.md) - - [Semigroup](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/07-Appendable--Semigroup-to-Monoid.md#Semigroup) - - [Examples](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/07-Appendable--Semigroup-to-Monoid.md#Examples) - - [Monoid](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/07-Appendable--Semigroup-to-Monoid.md#Monoid) - - [Docs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/07-Appendable--Semigroup-to-Monoid.md#Docs) + - [01 Useful Types.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/01-Useful-Types.md) + - [Void](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/01-Useful-Types.md#Void) + - [Unit](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/01-Useful-Types.md#Unit) + - [Natural Transformations](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/01-Useful-Types.md#Natural-Transformations) + - [02 Useful Functions.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/02-Useful-Functions.md) + - [Const](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/02-Useful-Functions.md#Const) + - [Flip](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/02-Useful-Functions.md#Flip) + - [Apply](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/02-Useful-Functions.md#Apply) + - [Other Less-Used Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/02-Useful-Functions.md#Other-Less-Used-Functions) + - [03 Preludes Type Classes.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/03-Preludes-Type-Classes.md) + - [Relationships](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/03-Preludes-Type-Classes.md#Relationships) + - [Tricks for Implementing a Type Class Instance](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/03-Preludes-Type-Classes.md#Tricks-for-Implementing-a-Type-Class-Instance) + - [04 Laws.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/04-Laws.md) + - [05 Objecty: Show and Equal to Bounded.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/05-Objecty--Show-and-Equal-to-Bounded.md) + - [Show, Equal, Ord, Bounded](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/05-Objecty--Show-and-Equal-to-Bounded.md#Show-Equal-Ord-Bounded) + - [Useful Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/05-Objecty--Show-and-Equal-to-Bounded.md#Useful-Derived-Functions) + - [06 Arrows: Semigroupoid and Category.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/06-Arrows--Semigroupoid-and-Category.md) + - [Cleaner Function Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/06-Arrows--Semigroupoid-and-Category.md#Cleaner-Function-Notation) + - [Generalizing to More Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/06-Arrows--Semigroupoid-and-Category.md#Generalizing-to-More-Types) + - [07 Appendable: Semigroup to Monoid.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/07-Appendable--Semigroup-to-Monoid.md) + - [Semigroup](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/07-Appendable--Semigroup-to-Monoid.md#Semigroup) + - [Examples](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/07-Appendable--Semigroup-to-Monoid.md#Examples) + - [Monoid](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/07-Appendable--Semigroup-to-Monoid.md#Monoid) + - [Docs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/07-Appendable--Semigroup-to-Monoid.md#Docs) - 08 Control Flow: Functor to Monad - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/ReadMe.md) - - [Functor, Apply, and Bind Type Classes Explained in Pictures](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/ReadMe.md#Functor-Apply-and-Bind-Type-Classes-Explained-in-Pictures) - - [Lists' Map Function in Purescript](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/ReadMe.md#Lists-Map-Function-in-Purescript) - - [Functor, Apply, Applicative, Bind, Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/ReadMe.md#Functor-Apply-Applicative-Bind-Monad) - - [Simplest Monad Implementation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/ReadMe.md#Simplest-Monad-Implementation) - - [Function Reduction](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/ReadMe.md#Function-Reduction) - - [01 Functor.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md) - - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md#Usage) - - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md#Definition) - - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md#Laws) - - [Identity](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md#Identity) - - [Composition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md#Composition) - - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md#Derived-Functions) - - [02 Apply.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md) - - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md#Usage) - - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md#Definition) - - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md#Laws) - - [Associative Composition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md#Associative-Composition) - - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md#Derived-Functions) - - [LiftN Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md#LiftN-Notation) - - [03 Applicative.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md) - - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Usage) - - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Definition) - - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Laws) - - [Identity](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Identity) - - [Composition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Composition) - - [Homomorphism](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Homomorphism) - - [Interchange](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Interchange) - - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Derived-Functions) - - [04 Bind.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/04-Bind.md) - - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/04-Bind.md#Usage) - - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/04-Bind.md#Definition) - - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/04-Bind.md#Laws) - - [Associativity](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/04-Bind.md#Associativity) - - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/04-Bind.md#Derived-Functions) - - [05 Monad.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md) - - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Usage) - - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Definition) - - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Laws) - - [Unofficial](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Unofficial) - - [Official](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Official) - - [Identity](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Identity) - - [Applicative Superclass](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Applicative-Superclass) - - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Derived-Functions) - - [11 How the Computer Executes FP Programs.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/11-How-the-Computer-Executes-FP-Programs.md) - - [Do and Ado Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/11-How-the-Computer-Executes-FP-Programs.md#Do-and-Ado-Notation) - - [12 Useful Monads.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/12-Useful-Monads.md) - - [The Maybe Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/12-Useful-Monads.md#The-Maybe-Monad) - - [The Either Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/12-Useful-Monads.md#The-Either-Monad) - - [The List Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/12-Useful-Monads.md#The-List-Monad) - - [Concluding Thoughts](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/12-Useful-Monads.md#Concluding-Thoughts) - - [13 Monoids Reconsidered.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/13-Monoids-Reconsidered.md) - - [14 The Monad Composition Problem.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/14-The-Monad-Composition-Problem.md) - - [Reducing a Monad Chain into Its Final Value](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/14-The-Monad-Composition-Problem.md#Reducing-a-Monad-Chain-into-Its-Final-Value) - - [The Problem Defined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/14-The-Monad-Composition-Problem.md#The-Problem-Defined) - - [Lifting One Monad into Another](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/14-The-Monad-Composition-Problem.md#Lifting-One-Monad-into-Another) - - [09 Appendable: Numeric Hierarchy.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/09-Appendable--Numeric-Hierarchy.md) - - [Docs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/02-Prelude/09-Appendable--Numeric-Hierarchy.md#Docs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/ReadMe.md) + - [Functor, Apply, and Bind Type Classes Explained in Pictures](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/ReadMe.md#Functor-Apply-and-Bind-Type-Classes-Explained-in-Pictures) + - [Lists' Map Function in Purescript](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/ReadMe.md#Lists-Map-Function-in-Purescript) + - [Functor, Apply, Applicative, Bind, Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/ReadMe.md#Functor-Apply-Applicative-Bind-Monad) + - [Simplest Monad Implementation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/ReadMe.md#Simplest-Monad-Implementation) + - [Function Reduction](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/ReadMe.md#Function-Reduction) + - [01 Functor.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md) + - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md#Usage) + - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md#Definition) + - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md#Laws) + - [Identity](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md#Identity) + - [Composition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md#Composition) + - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/01-Functor.md#Derived-Functions) + - [02 Apply.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md) + - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md#Usage) + - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md#Definition) + - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md#Laws) + - [Associative Composition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md#Associative-Composition) + - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md#Derived-Functions) + - [LiftN Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/02-Apply.md#LiftN-Notation) + - [03 Applicative.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md) + - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Usage) + - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Definition) + - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Laws) + - [Identity](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Identity) + - [Composition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Composition) + - [Homomorphism](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Homomorphism) + - [Interchange](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Interchange) + - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/03-Applicative.md#Derived-Functions) + - [04 Bind.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/04-Bind.md) + - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/04-Bind.md#Usage) + - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/04-Bind.md#Definition) + - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/04-Bind.md#Laws) + - [Associativity](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/04-Bind.md#Associativity) + - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/04-Bind.md#Derived-Functions) + - [05 Monad.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md) + - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Usage) + - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Definition) + - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Laws) + - [Unofficial](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Unofficial) + - [Official](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Official) + - [Identity](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Identity) + - [Applicative Superclass](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Applicative-Superclass) + - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/05-Monad.md#Derived-Functions) + - [11 How the Computer Executes FP Programs.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/11-How-the-Computer-Executes-FP-Programs.md) + - [Do and Ado Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/11-How-the-Computer-Executes-FP-Programs.md#Do-and-Ado-Notation) + - [12 Useful Monads.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/12-Useful-Monads.md) + - [The Maybe Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/12-Useful-Monads.md#The-Maybe-Monad) + - [The Either Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/12-Useful-Monads.md#The-Either-Monad) + - [The List Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/12-Useful-Monads.md#The-List-Monad) + - [Concluding Thoughts](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/12-Useful-Monads.md#Concluding-Thoughts) + - [13 Monoids Reconsidered.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/13-Monoids-Reconsidered.md) + - [14 The Monad Composition Problem.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/14-The-Monad-Composition-Problem.md) + - [Reducing a Monad Chain into Its Final Value](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/14-The-Monad-Composition-Problem.md#Reducing-a-Monad-Chain-into-Its-Final-Value) + - [The Problem Defined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/14-The-Monad-Composition-Problem.md#The-Problem-Defined) + - [Lifting One Monad into Another](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/08-Control-Flow--Functor-to-Monad/14-The-Monad-Composition-Problem.md#Lifting-One-Monad-into-Another) + - [09 Appendable: Numeric Hierarchy.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/09-Appendable--Numeric-Hierarchy.md) + - [Docs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/02-Prelude/09-Appendable--Numeric-Hierarchy.md#Docs) - 03 Foldable Traversable - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/ReadMe.md) - - [01 Foldable.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/01-Foldable.md) - - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/01-Foldable.md#Usage) - - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/01-Foldable.md#Definition) - - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/01-Foldable.md#Laws) - - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/01-Foldable.md#Derived-Functions) - - [02 Traversable.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/02-Traversable.md) - - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/02-Traversable.md#Usage) - - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/02-Traversable.md#Definition) - - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/02-Traversable.md#Laws) - - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/02-Traversable.md#Derived-Functions) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/ReadMe.md) + - [01 Foldable.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/01-Foldable.md) + - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/01-Foldable.md#Usage) + - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/01-Foldable.md#Definition) + - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/01-Foldable.md#Laws) + - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/01-Foldable.md#Derived-Functions) + - [02 Traversable.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/02-Traversable.md) + - [Usage](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/02-Traversable.md#Usage) + - [Definition](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/02-Traversable.md#Definition) + - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/02-Traversable.md#Laws) + - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/02-Prelude-ish/03-Foldable-Traversable/02-Traversable.md#Derived-Functions) - 03 Effect and Aff - - [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/Readme.md) - - [REPL](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/Readme.md#REPL) - - [Compilation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/Readme.md#Compilation) - - [Effect Folder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/Readme.md#Effect-Folder) - - [Aff Folder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/Readme.md#Aff-Folder) + - [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/Readme.md) + - [REPL](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/Readme.md#REPL) + - [Compilation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/Readme.md#Compilation) + - [Effect Folder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/Readme.md#Effect-Folder) + - [Aff Folder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/Readme.md#Aff-Folder) - src - 01 Effect - - [01 Native Side Effects via Effect.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/01-Native-Side-Effects-via-Effect.md) - - [The Effect Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/01-Native-Side-Effects-via-Effect.md#The-Effect-Monad) - - [Understanding the Effect Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/01-Native-Side-Effects-via-Effect.md#Understanding-the-Effect-Monad) - - [Main: A Program's Entry Point](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/01-Native-Side-Effects-via-Effect.md#Main-A-Programs-Entry-Point) - - [02 Hello World.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/02-Hello-World.purs) - - [03 Hello Number.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/03-Hello-Number.purs) - - [04 Hello Do Notation.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/04-Hello-Do-Notation.purs) + - [01 Native Side Effects via Effect.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/01-Native-Side-Effects-via-Effect.md) + - [The Effect Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/01-Native-Side-Effects-via-Effect.md#The-Effect-Monad) + - [Understanding the Effect Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/01-Native-Side-Effects-via-Effect.md#Understanding-the-Effect-Monad) + - [Main: A Program's Entry Point](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/01-Native-Side-Effects-via-Effect.md#Main-A-Programs-Entry-Point) + - [02 Hello World.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/02-Hello-World.purs) + - [03 Hello Number.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/03-Hello-Number.purs) + - [04 Hello Do Notation.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/04-Hello-Do-Notation.purs) - 05 Other Effects - - [01 Random Number.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/05-Other-Effects/01-Random-Number.purs) - - [02 Current Date and Time.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/05-Other-Effects/02-Current-Date-and-Time.purs) - - [03 Timeout and Interval.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/05-Other-Effects/03-Timeout-and-Interval.purs) + - [01 Random Number.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/05-Other-Effects/01-Random-Number.purs) + - [02 Current Date and Time.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/05-Other-Effects/02-Current-Date-and-Time.purs) + - [03 Timeout and Interval.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/05-Other-Effects/03-Timeout-and-Interval.purs) - 06 Mutable State - - [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/06-Mutable-State/Readme.md) - - [01 Global.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/06-Mutable-State/01-Global.purs) - - [02 Local.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/06-Mutable-State/02-Local.purs) - - [10 Summary of Effect Libraries.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/10-Summary-of-Effect-Libraries.md) - - [Summary of Effect Libraries](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/01-Effect/10-Summary-of-Effect-Libraries.md#Summary-of-Effect-Libraries) - - [02 Effect Eff and Aff.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/02-Effect-Eff-and-Aff.md) - - [Some History](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/02-Effect-Eff-and-Aff.md#Some-History) - - [Aff](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/02-Effect-Eff-and-Aff.md#Aff) + - [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/06-Mutable-State/Readme.md) + - [01 Global.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/06-Mutable-State/01-Global.purs) + - [02 Local.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/06-Mutable-State/02-Local.purs) + - [10 Summary of Effect Libraries.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/10-Summary-of-Effect-Libraries.md) + - [Summary of Effect Libraries](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/01-Effect/10-Summary-of-Effect-Libraries.md#Summary-of-Effect-Libraries) + - [02 Effect Eff and Aff.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/02-Effect-Eff-and-Aff.md) + - [Some History](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/02-Effect-Eff-and-Aff.md#Some-History) + - [Aff](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/02-Effect-Eff-and-Aff.md#Aff) - 03 Aff - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/ReadMe.md) - - [Folder's Contents](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/ReadMe.md#Folders-Contents) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/ReadMe.md) + - [Folder's Contents](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/ReadMe.md#Folders-Contents) - 01 Basics - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/ReadMe.md) - - [01 Launching Aff.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/01-Launching-Aff.purs) - - [02 Delay.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/02-Delay.purs) - - [03 Fork Join.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/03-Fork-Join.purs) - - [04 Suspend Join.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/04-Suspend-Join.purs) - - [05 Cached Join.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/05-Cached-Join.purs) - - [06 Switching Contexts.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/06-Switching-Contexts.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/ReadMe.md) + - [01 Launching Aff.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/01-Launching-Aff.purs) + - [02 Delay.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/02-Delay.purs) + - [03 Fork Join.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/03-Fork-Join.purs) + - [04 Suspend Join.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/04-Suspend-Join.purs) + - [05 Cached Join.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/05-Cached-Join.purs) + - [06 Switching Contexts.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/01-Basics/06-Switching-Contexts.purs) - 02 Lifting Monads - - [01 MonadEffect.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/02-Lifting-Monads/01-MonadEffect.md) - - [Lifting one Monad into another](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/02-Lifting-Monads/01-MonadEffect.md#Lifting-one-Monad-into-another) - - [MonadEffect](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/02-Lifting-Monads/01-MonadEffect.md#MonadEffect) - - [02 SpecialLog.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/02-Lifting-Monads/02-SpecialLog.purs) - - [03 Timeout and Interval.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/02-Lifting-Monads/03-Timeout-and-Interval.purs) + - [01 MonadEffect.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/02-Lifting-Monads/01-MonadEffect.md) + - [Lifting one Monad into another](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/02-Lifting-Monads/01-MonadEffect.md#Lifting-one-Monad-into-another) + - [MonadEffect](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/02-Lifting-Monads/01-MonadEffect.md#MonadEffect) + - [02 SpecialLog.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/02-Lifting-Monads/02-SpecialLog.purs) + - [03 Timeout and Interval.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/02-Lifting-Monads/03-Timeout-and-Interval.purs) - 03 Node ReadLine - - [01 Readline API.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/01-Readline-API.md) - - [02 ReadLine Effect.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/02-ReadLine-Effect.purs) - - [03 Converting Effects with Callbacks into Aff.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/03-Converting-Effects-with-Callbacks-into-Aff.md) - - [Aff Overview](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/03-Converting-Effects-with-Callbacks-into-Aff.md#Aff-Overview) - - [Understanding `runAff`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/03-Converting-Effects-with-Callbacks-into-Aff.md#Understanding-runAff) - - [Understanding `makeAff`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/03-Converting-Effects-with-Callbacks-into-Aff.md#Understanding-makeAff) - - [04 ReadLine Aff.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/04-ReadLine-Aff.purs) - - [04 Useful Aff Libraries.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/04-Useful-Aff-Libraries.md) - - [Based on Aff](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/04-Useful-Aff-Libraries.md#Based-on-Aff) - - [Aff Wrappers Around Node](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/03-Effect-and-Aff/src/03-Aff/04-Useful-Aff-Libraries.md#Aff-Wrappers-Around-Node) + - [01 Readline API.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/01-Readline-API.md) + - [02 ReadLine Effect.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/02-ReadLine-Effect.purs) + - [03 Converting Effects with Callbacks into Aff.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/03-Converting-Effects-with-Callbacks-into-Aff.md) + - [Aff Overview](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/03-Converting-Effects-with-Callbacks-into-Aff.md#Aff-Overview) + - [Understanding `runAff`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/03-Converting-Effects-with-Callbacks-into-Aff.md#Understanding-runAff) + - [Understanding `makeAff`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/03-Converting-Effects-with-Callbacks-into-Aff.md#Understanding-makeAff) + - [04 ReadLine Aff.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/03-Node-ReadLine/04-ReadLine-Aff.purs) + - [04 Useful Aff Libraries.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/04-Useful-Aff-Libraries.md) + - [Based on Aff](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/04-Useful-Aff-Libraries.md#Based-on-Aff) + - [Aff Wrappers Around Node](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/03-Effect-and-Aff/src/03-Aff/04-Useful-Aff-Libraries.md#Aff-Wrappers-Around-Node) - 04 Debugging - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/ReadMe.md) - - [Running The Lessons](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/ReadMe.md#Running-The-Lessons) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/ReadMe.md) + - [Running The Lessons](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/ReadMe.md#Running-The-Lessons) - src - - [01 General Debugging.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/01-General-Debugging.md) - - [There is currently no "Actual Type / Expected Type" distinction](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/01-General-Debugging.md#There-is-currently-no-Actual-Type--Expected-Type-distinction) - - [Distinguishing the Difference between `{...}` and `(...)` errors](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Distinguishing-the-Difference-between--and--errors) - - [Type Directed Search](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Type-Directed-Search) - - [Getting the Type of an Expression from the Compiler](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Getting-the-Type-of-an-Expression-from-the-Compiler) - - [Getting the Type of a Function from the Compiler](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Getting-the-Type-of-a-Function-from-the-Compiler) - - [Determining why a type was inferred incorrectly](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Determining-why-a-type-was-inferred-incorrectly) - - [Could not match type `Monad` with type `Function (Argument -> Monad a)`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Could-not-match-type-Monad-with-type-Function-Argument---Monad-a) - - [Improve Error Messages when using `unsafePartial` to un-Partial Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Improve-Error-Messages-when-using-unsafePartial-to-un-Partial-Functions) + - [01 General Debugging.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/01-General-Debugging.md) + - [There is currently no "Actual Type / Expected Type" distinction](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/01-General-Debugging.md#There-is-currently-no-Actual-Type--Expected-Type-distinction) + - [Distinguishing the Difference between `{...}` and `(...)` errors](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Distinguishing-the-Difference-between--and--errors) + - [Type Directed Search](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Type-Directed-Search) + - [Getting the Type of an Expression from the Compiler](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Getting-the-Type-of-an-Expression-from-the-Compiler) + - [Getting the Type of a Function from the Compiler](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Getting-the-Type-of-a-Function-from-the-Compiler) + - [Determining why a type was inferred incorrectly](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Determining-why-a-type-was-inferred-incorrectly) + - [Could not match type `Monad` with type `Function (Argument -> Monad a)`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Could-not-match-type-Monad-with-type-Function-Argument---Monad-a) + - [Improve Error Messages when using `unsafePartial` to un-Partial Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/01-General-Debugging.md#Improve-Error-Messages-when-using-unsafePartial-to-un-Partial-Functions) - 02 Custom Type Errors - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/ReadMe.md) - - [Pre-reqs for This Folder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/ReadMe.md#Pre-reqs-for-This-Folder) - - [Scope of This Folder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/ReadMe.md#Scope-of-This-Folder) - - [01 Overview API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/01-Overview-API.purs) - - [02 Values.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/02-Values.purs) - - [03 Functions.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/03-Functions.purs) - - [04 Type Class Instances.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/04-Type-Class-Instances.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/ReadMe.md) + - [Pre-reqs for This Folder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/ReadMe.md#Pre-reqs-for-This-Folder) + - [Scope of This Folder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/ReadMe.md#Scope-of-This-Folder) + - [01 Overview API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/01-Overview-API.purs) + - [02 Values.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/02-Values.purs) + - [03 Functions.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/03-Functions.purs) + - [04 Type Class Instances.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/02-Custom-Type-Errors/04-Type-Class-Instances.purs) - 03 Debug Trace - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/03-Debug-Trace/ReadMe.md) - - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/03-Debug-Trace/ReadMe.md#Compilation-Instructions) - - [Seeing the Custom Type Errors](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/03-Debug-Trace/ReadMe.md#Seeing-the-Custom-Type-Errors) - - [Running the Examples](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/03-Debug-Trace/ReadMe.md#Running-the-Examples) - - [01 Debug Trace.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/03-Debug-Trace/01-Debug-Trace.purs) - - [02 DebugWarning.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/03-Debug-Trace/02-DebugWarning.md) - - [03 Local State.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/03-Debug-Trace/03-Local-State.purs) - - [04 Console Based Debugging.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/04-Debugging/src/04-Console-Based-Debugging.md) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/03-Debug-Trace/ReadMe.md) + - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/03-Debug-Trace/ReadMe.md#Compilation-Instructions) + - [Seeing the Custom Type Errors](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/03-Debug-Trace/ReadMe.md#Seeing-the-Custom-Type-Errors) + - [Running the Examples](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/03-Debug-Trace/ReadMe.md#Running-the-Examples) + - [01 Debug Trace.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/03-Debug-Trace/01-Debug-Trace.purs) + - [02 DebugWarning.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/03-Debug-Trace/02-DebugWarning.md) + - [03 Local State.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/03-Debug-Trace/03-Local-State.purs) + - [04 Console Based Debugging.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/04-Debugging/src/04-Console-Based-Debugging.md) - 05 Application Structure - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/ReadMe.md) - - [A Word of Thanks](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/ReadMe.md#A-Word-of-Thanks) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/ReadMe.md) + - [A Word of Thanks](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/ReadMe.md#A-Word-of-Thanks) - src - - [00 A Bad Program.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/00-A-Bad-Program.purs) - - [01 Monads and Effects.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md) - - [Effects / Capabilities](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md#Effects--Capabilities) - - [Examples of Effects / Capabilities](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md#Examples-of-Effects--Capabilities) - - [Modeling Effects](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md#Modeling-Effects) - - [Composing Monads](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md#Composing-Monads) - - [MTL Approach](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md#MTL-Approach) - - [Free](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md#Free) + - [00 A Bad Program.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/00-A-Bad-Program.purs) + - [01 Monads and Effects.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md) + - [Effects / Capabilities](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md#Effects--Capabilities) + - [Examples of Effects / Capabilities](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md#Examples-of-Effects--Capabilities) + - [Modeling Effects](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md#Modeling-Effects) + - [Composing Monads](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md#Composing-Monads) + - [MTL Approach](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md#MTL-Approach) + - [Free](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/01-Monads-and-Effects.md#Free) - 02 MTL - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/ReadMe.md) - - [Explaining the Name](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/ReadMe.md#Explaining-the-Name) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/ReadMe.md) + - [Explaining the Name](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/ReadMe.md#Explaining-the-Name) - 01 Foundations.md - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/ReadMe.md) - - [Folder's Contents](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/ReadMe.md#Folders-Contents) - - [01 The Function Monad.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md) - - [A Refresher on Monads](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#A-Refresher-on-Monads) - - [Reviewing `Function` as a Data Type](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Reviewing-Function-as-a-Data-Type) - - [Implementing the `Monad` Type Class Hierarchy's Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Implementing-the-Monad-Type-Class-Hierarchys-Functions) - - [Functor](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Functor) - - [Initial Problems](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Initial-Problems) - - [Implementing `map`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Implementing-map) - - [Takeaways](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Takeaways) - - [Apply](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Apply) - - [Initial Problems](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Initial-Problems) - - [Implementing `apply`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Implementing-apply) - - [Takeaways](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Takeaways) - - [Applicative](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Applicative) - - [Bind](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Bind) - - [Implementing `bind`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Implementing-bind) - - [Summary of Our Takeaways](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Summary-of-Our-Takeaways) - - [Resugaring `Function`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Resugaring-Function) - - [02 Do Notation for Monadic Functions.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/02-Do-Notation-for-Monadic-Functions.md) - - [Function Implementations](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/02-Do-Notation-for-Monadic-Functions.md#Function-Implementations) - - [Example 1: `pure`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/02-Do-Notation-for-Monadic-Functions.md#Example-1-pure) - - [Example 2: single `bind`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/02-Do-Notation-for-Monadic-Functions.md#Example-2-single-bind) - - [Example 3: multiple `bind`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/02-Do-Notation-for-Monadic-Functions.md#Example-3-multiple-bind) - - [03 Special Output.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md) - - [Newtyping our `Function`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Newtyping-our-Function) - - [Functor](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Functor) - - [Implementing `map`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Implementing-map) - - [Takeaways](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Takeaways) - - [Apply](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Apply) - - [Takeaways](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Takeaways) - - [Applicative](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Applicative) - - [Bind](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Bind) - - [Generalizing `Box` to any `Monad`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Generalizing-Box-to-any-Monad) - - [04 Introducing Monad Transformers.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/04-Introducing-Monad-Transformers.md) - - [Comparing `Function input output` to `OutputBox input output`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/04-Introducing-Monad-Transformers.md#Comparing-Function-input-output-to-OutputBox-input-output) - - [Introducing `ReaderT`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/04-Introducing-Monad-Transformers.md#Introducing-ReaderT) - - [Monad Transformers Summarized](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/04-Introducing-Monad-Transformers.md#Monad-Transformers-Summarized) - - [The Main Idea](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/04-Introducing-Monad-Transformers.md#The-Main-Idea) - - [Breaking It Down](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/04-Introducing-Monad-Transformers.md#Breaking-It-Down) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/ReadMe.md) + - [Folder's Contents](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/ReadMe.md#Folders-Contents) + - [01 The Function Monad.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md) + - [A Refresher on Monads](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#A-Refresher-on-Monads) + - [Reviewing `Function` as a Data Type](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Reviewing-Function-as-a-Data-Type) + - [Implementing the `Monad` Type Class Hierarchy's Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Implementing-the-Monad-Type-Class-Hierarchys-Functions) + - [Functor](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Functor) + - [Initial Problems](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Initial-Problems) + - [Implementing `map`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Implementing-map) + - [Takeaways](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Takeaways) + - [Apply](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Apply) + - [Initial Problems](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Initial-Problems) + - [Implementing `apply`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Implementing-apply) + - [Takeaways](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Takeaways) + - [Applicative](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Applicative) + - [Bind](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Bind) + - [Implementing `bind`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Implementing-bind) + - [Summary of Our Takeaways](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Summary-of-Our-Takeaways) + - [Resugaring `Function`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/01-The-Function-Monad.md#Resugaring-Function) + - [02 Do Notation for Monadic Functions.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/02-Do-Notation-for-Monadic-Functions.md) + - [Function Implementations](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/02-Do-Notation-for-Monadic-Functions.md#Function-Implementations) + - [Example 1: `pure`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/02-Do-Notation-for-Monadic-Functions.md#Example-1-pure) + - [Example 2: single `bind`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/02-Do-Notation-for-Monadic-Functions.md#Example-2-single-bind) + - [Example 3: multiple `bind`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/02-Do-Notation-for-Monadic-Functions.md#Example-3-multiple-bind) + - [03 Special Output.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md) + - [Newtyping our `Function`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Newtyping-our-Function) + - [Functor](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Functor) + - [Implementing `map`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Implementing-map) + - [Takeaways](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Takeaways) + - [Apply](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Apply) + - [Takeaways](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Takeaways) + - [Applicative](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Applicative) + - [Bind](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Bind) + - [Generalizing `Box` to any `Monad`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/03-Special-Output.md#Generalizing-Box-to-any-Monad) + - [04 Introducing Monad Transformers.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/04-Introducing-Monad-Transformers.md) + - [Comparing `Function input output` to `OutputBox input output`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/04-Introducing-Monad-Transformers.md#Comparing-Function-input-output-to-OutputBox-input-output) + - [Introducing `ReaderT`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/04-Introducing-Monad-Transformers.md#Introducing-ReaderT) + - [Monad Transformers Summarized](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/04-Introducing-Monad-Transformers.md#Monad-Transformers-Summarized) + - [The Main Idea](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/04-Introducing-Monad-Transformers.md#The-Main-Idea) + - [Breaking It Down](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/01-Foundations.md/04-Introducing-Monad-Transformers.md#Breaking-It-Down) - 02 Implementing a Monad Transformer - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/ReadMe.md) - - [01 Looking at OO for a Pattern.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/01-Looking-at-OO-for-a-Pattern.md) - - [Incrementing an Integer](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/01-Looking-at-OO-for-a-Pattern.md#Incrementing-an-Integer) - - [Random Number Generators](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/01-Looking-at-OO-for-a-Pattern.md#Random-Number-Generators) - - [Popping Stacks](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/01-Looking-at-OO-for-a-Pattern.md#Popping-Stacks) - - [Identifying the Pattern](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/01-Looking-at-OO-for-a-Pattern.md#Identifying-the-Pattern) - - [02 Implementing the Pattern.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/02-Implementing-the-Pattern.md) - - [Syntax Familiarity](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/02-Implementing-the-Pattern.md#Syntax-Familiarity) - - [Why We Need a Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/02-Implementing-the-Pattern.md#Why-We-Need-a-Monad) - - [The `Identity` Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/02-Implementing-the-Pattern.md#The-Identity-Monad) - - [The Syntax Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/02-Implementing-the-Pattern.md#The-Syntax-Problem) - - [Abstracting the Concept into a Type Class](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/02-Implementing-the-Pattern.md#Abstracting-the-Concept-into-a-Type-Class) - - [03 A Magical Monad.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md) - - [Introducing the Function Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Introducing-the-Function-Monad) - - [Monadic Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Monadic-Instances) - - [Functor](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Functor) - - [Apply](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Apply) - - [Applicative](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Applicative) - - [Bind & Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Bind--Monad) - - [MonadState](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#MonadState) - - [FAABM Using Bind](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#FAABM-Using-Bind) - - [Reviewing StateT's Bind Instance](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Reviewing-StateTs-Bind-Instance) - - [04 Proving the Syntax.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/04-Proving-the-Syntax.md) - - [Reading StateT Do Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/04-Proving-the-Syntax.md#Reading-StateT-Do-Notation) - - [Reducing a StateT's Do Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/04-Proving-the-Syntax.md#Reducing-a-StateTs-Do-Notation) - - [Running a StateT with an Initial Value](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/04-Proving-the-Syntax.md#Running-a-StateT-with-an-Initial-Value) - - [Reducing a `runStateT` Call](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/04-Proving-the-Syntax.md#Reducing-a-runStateT-Call) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/ReadMe.md) + - [01 Looking at OO for a Pattern.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/01-Looking-at-OO-for-a-Pattern.md) + - [Incrementing an Integer](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/01-Looking-at-OO-for-a-Pattern.md#Incrementing-an-Integer) + - [Random Number Generators](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/01-Looking-at-OO-for-a-Pattern.md#Random-Number-Generators) + - [Popping Stacks](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/01-Looking-at-OO-for-a-Pattern.md#Popping-Stacks) + - [Identifying the Pattern](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/01-Looking-at-OO-for-a-Pattern.md#Identifying-the-Pattern) + - [02 Implementing the Pattern.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/02-Implementing-the-Pattern.md) + - [Syntax Familiarity](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/02-Implementing-the-Pattern.md#Syntax-Familiarity) + - [Why We Need a Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/02-Implementing-the-Pattern.md#Why-We-Need-a-Monad) + - [The `Identity` Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/02-Implementing-the-Pattern.md#The-Identity-Monad) + - [The Syntax Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/02-Implementing-the-Pattern.md#The-Syntax-Problem) + - [Abstracting the Concept into a Type Class](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/02-Implementing-the-Pattern.md#Abstracting-the-Concept-into-a-Type-Class) + - [03 A Magical Monad.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md) + - [Introducing the Function Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Introducing-the-Function-Monad) + - [Monadic Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Monadic-Instances) + - [Functor](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Functor) + - [Apply](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Apply) + - [Applicative](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Applicative) + - [Bind & Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Bind--Monad) + - [MonadState](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#MonadState) + - [FAABM Using Bind](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#FAABM-Using-Bind) + - [Reviewing StateT's Bind Instance](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/03-A-Magical-Monad.md#Reviewing-StateTs-Bind-Instance) + - [04 Proving the Syntax.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/04-Proving-the-Syntax.md) + - [Reading StateT Do Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/04-Proving-the-Syntax.md#Reading-StateT-Do-Notation) + - [Reducing a StateT's Do Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/04-Proving-the-Syntax.md#Reducing-a-StateTs-Do-Notation) + - [Running a StateT with an Initial Value](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/04-Proving-the-Syntax.md#Running-a-StateT-with-an-Initial-Value) + - [Reducing a `runStateT` Call](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/02-Implementing-a-Monad-Transformer/04-Proving-the-Syntax.md#Reducing-a-runStateT-Call) - 11 Ask and Reader - - [01 Overview.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/01-Overview.md) - - [Monad Reader](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/01-Overview.md#Monad-Reader) - - [Do Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/01-Overview.md#Do-Notation) - - [MonadReader](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/01-Overview.md#MonadReader) - - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/01-Overview.md#Derived-Functions) - - [Laws, Instances, and Miscellaneous Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/01-Overview.md#Laws-Instances-and-Miscellaneous-Functions) - - [02 Monad Ask Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/02-Monad-Ask-Example.purs) - - [03 Monad Reader Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/03-Monad-Reader-Example.purs) + - [01 Overview.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/01-Overview.md) + - [Monad Reader](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/01-Overview.md#Monad-Reader) + - [Do Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/01-Overview.md#Do-Notation) + - [MonadReader](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/01-Overview.md#MonadReader) + - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/01-Overview.md#Derived-Functions) + - [Laws, Instances, and Miscellaneous Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/01-Overview.md#Laws-Instances-and-Miscellaneous-Functions) + - [02 Monad Ask Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/02-Monad-Ask-Example.purs) + - [03 Monad Reader Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/11-Ask-and-Reader/03-Monad-Reader-Example.purs) - 12 Monad State - - [01 Monad State.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/12-Monad-State/01-Monad-State.md) - - [Reading Its Do Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/12-Monad-State/01-Monad-State.md#Reading-Its-Do-Notation) - - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/12-Monad-State/01-Monad-State.md#Derived-Functions) - - [Laws, Instances, and Miscellaneous Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/12-Monad-State/01-Monad-State.md#Laws-Instances-and-Miscellaneous-Functions) - - [02 Monad State Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/12-Monad-State/02-Monad-State-Example.purs) + - [01 Monad State.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/12-Monad-State/01-Monad-State.md) + - [Reading Its Do Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/12-Monad-State/01-Monad-State.md#Reading-Its-Do-Notation) + - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/12-Monad-State/01-Monad-State.md#Derived-Functions) + - [Laws, Instances, and Miscellaneous Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/12-Monad-State/01-Monad-State.md#Laws-Instances-and-Miscellaneous-Functions) + - [02 Monad State Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/12-Monad-State/02-Monad-State-Example.purs) - 13 Tell and Writer - - [01 Overview.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/01-Overview.md) - - [Monad Tell](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/01-Overview.md#Monad-Tell) - - [Do Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/01-Overview.md#Do-Notation) - - [Monad Writer](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/01-Overview.md#Monad-Writer) - - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/01-Overview.md#Derived-Functions) - - [Laws, Instances, and Miscellaneous Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/01-Overview.md#Laws-Instances-and-Miscellaneous-Functions) - - [02 Monad Tell Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/02-Monad-Tell-Example.purs) - - [03 Monad Writer Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/03-Monad-Writer-Example.purs) + - [01 Overview.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/01-Overview.md) + - [Monad Tell](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/01-Overview.md#Monad-Tell) + - [Do Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/01-Overview.md#Do-Notation) + - [Monad Writer](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/01-Overview.md#Monad-Writer) + - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/01-Overview.md#Derived-Functions) + - [Laws, Instances, and Miscellaneous Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/01-Overview.md#Laws-Instances-and-Miscellaneous-Functions) + - [02 Monad Tell Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/02-Monad-Tell-Example.purs) + - [03 Monad Writer Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/13-Tell-and-Writer/03-Monad-Writer-Example.purs) - 14 Throw and Error - - [01 Overview.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md) - - [MonadThrow](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md#MonadThrow) - - [ExceptT: Before and After](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md#ExceptT-Before-and-After) - - [MonadError](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md#MonadError) - - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md#Derived-Functions) - - [Do Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md#Do-Notation) - - [Laws, Instances, and Miscellaneous Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md#Laws-Instances-and-Miscellaneous-Functions) - - [02 Monad Throw Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/02-Monad-Throw-Example.purs) - - [03 Monad Error Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/03-Monad-Error-Example.purs) + - [01 Overview.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md) + - [MonadThrow](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md#MonadThrow) + - [ExceptT: Before and After](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md#ExceptT-Before-and-After) + - [MonadError](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md#MonadError) + - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md#Derived-Functions) + - [Do Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md#Do-Notation) + - [Laws, Instances, and Miscellaneous Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/01-Overview.md#Laws-Instances-and-Miscellaneous-Functions) + - [02 Monad Throw Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/02-Monad-Throw-Example.purs) + - [03 Monad Error Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/14-Throw-and-Error/03-Monad-Error-Example.purs) - 15 Monad Cont - - [01 A Quick Explanation.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/01-A-Quick-Explanation.md) - - [Why Callbacks Exist](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/01-A-Quick-Explanation.md#Why-Callbacks-Exist) - - [The Continutation Solution](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/01-A-Quick-Explanation.md#The-Continutation-Solution) - - [Comparing ContT to Another Function](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/01-A-Quick-Explanation.md#Comparing-ContT-to-Another-Function) - - [When You Need Two or More Callback Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/01-A-Quick-Explanation.md#When-You-Need-Two-or-More-Callback-Functions) - - [Consider Your Perspective](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/01-A-Quick-Explanation.md#Consider-Your-Perspective) - - [02 Monad Cont.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/02-Monad-Cont.md) - - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/02-Monad-Cont.md#Derived-Functions) - - [Laws, Instances, and Miscellaneous Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/02-Monad-Cont.md#Laws-Instances-and-Miscellaneous-Functions) - - [03 Monad Cont Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/03-Monad-Cont-Example.purs) - - [16 Other Monad Transformers.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md) - - [Usable Now](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#Usable-Now) - - [RWS](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#RWS) - - [MaybeT](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#MaybeT) - - [ListT](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#ListT) - - [MonadGen](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#MonadGen) - - [MonadRec](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#MonadRec) - - [Sketches of Monadic Control Flow](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#Sketches-of-Monadic-Control-Flow) - - [Requires More Understanding](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#Requires-More-Understanding) + - [01 A Quick Explanation.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/01-A-Quick-Explanation.md) + - [Why Callbacks Exist](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/01-A-Quick-Explanation.md#Why-Callbacks-Exist) + - [The Continutation Solution](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/01-A-Quick-Explanation.md#The-Continutation-Solution) + - [Comparing ContT to Another Function](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/01-A-Quick-Explanation.md#Comparing-ContT-to-Another-Function) + - [When You Need Two or More Callback Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/01-A-Quick-Explanation.md#When-You-Need-Two-or-More-Callback-Functions) + - [Consider Your Perspective](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/01-A-Quick-Explanation.md#Consider-Your-Perspective) + - [02 Monad Cont.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/02-Monad-Cont.md) + - [Derived Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/02-Monad-Cont.md#Derived-Functions) + - [Laws, Instances, and Miscellaneous Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/02-Monad-Cont.md#Laws-Instances-and-Miscellaneous-Functions) + - [03 Monad Cont Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/15-Monad-Cont/03-Monad-Cont-Example.purs) + - [16 Other Monad Transformers.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md) + - [Usable Now](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#Usable-Now) + - [RWS](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#RWS) + - [MaybeT](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#MaybeT) + - [ListT](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#ListT) + - [MonadGen](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#MonadGen) + - [MonadRec](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#MonadRec) + - [Sketches of Monadic Control Flow](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#Sketches-of-Monadic-Control-Flow) + - [Requires More Understanding](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/16-Other-Monad-Transformers.md#Requires-More-Understanding) - 21 Using a Monad Transformer - - [01 How Monad Trans Works.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/21-Using-a-Monad-Transformer/01-How-Monad-Trans-Works.md) - - [Reviewing Old Ideas](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/21-Using-a-Monad-Transformer/01-How-Monad-Trans-Works.md#Reviewing-Old-Ideas) - - [Explaining Its Process](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/21-Using-a-Monad-Transformer/01-How-Monad-Trans-Works.md#Explaining-Its-Process) - - [02 Using Monad Trans.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/21-Using-a-Monad-Transformer/02-Using-Monad-Trans.md) - - [Reordering the Monad Stack](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/21-Using-a-Monad-Transformer/02-Using-Monad-Trans.md#Reordering-the-Monad-Stack) - - [03 Monad Transformer Stacks.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/21-Using-a-Monad-Transformer/03-Monad-Transformer-Stacks.md) + - [01 How Monad Trans Works.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/21-Using-a-Monad-Transformer/01-How-Monad-Trans-Works.md) + - [Reviewing Old Ideas](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/21-Using-a-Monad-Transformer/01-How-Monad-Trans-Works.md#Reviewing-Old-Ideas) + - [Explaining Its Process](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/21-Using-a-Monad-Transformer/01-How-Monad-Trans-Works.md#Explaining-Its-Process) + - [02 Using Monad Trans.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/21-Using-a-Monad-Transformer/02-Using-Monad-Trans.md) + - [Reordering the Monad Stack](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/21-Using-a-Monad-Transformer/02-Using-Monad-Trans.md#Reordering-the-Monad-Stack) + - [03 Monad Transformer Stacks.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/21-Using-a-Monad-Transformer/03-Monad-Transformer-Stacks.md) - 22 Monad Trans - - [01 Monad Trans.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/22-Monad-Trans/01-Monad-Trans.md) - - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/22-Monad-Trans/01-Monad-Trans.md#Laws) - - [Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/22-Monad-Trans/01-Monad-Trans.md#Instances) - - [02 Monad Trans Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/22-Monad-Trans/02-Monad-Trans-Example.purs) - - [31 Drawbacks of MTL.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md) - - [`MonadState` Allows Only One State Manipulation Type](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md#MonadState-Allows-Only-One-State-Manipulation-Type) - - [`MonadState` & `MonadWriter` lose their state on a runtime error](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md#MonadState--MonadWriter-lose-their-state-on-a-runtime-error) - - [`WriterT` & `RWST` has a "space leak" problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md#WriterT--RWST-has-a-space-leak-problem) - - [N-squared-ish Monad Transformer Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md#N-squared-ish-Monad-Transformer-Instances) - - [Monad transformer stacks' type signatures get complicated quickly](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md#Monad-transformer-stacks-type-signatures-get-complicated-quickly) - - [The Order of the Monad Transformer Stack Matters](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md#The-Order-of-the-Monad-Transformer-Stack-Matters) - - [32 The ReaderT Capability Design Pattern.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/32-The-ReaderT-Capability-Design-Pattern.md) - - [The `ReaderT` and `Capability` Design Patterns](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/32-The-ReaderT-Capability-Design-Pattern.md#The-ReaderT-and-Capability-Design-Patterns) - - [When to Use it: ReaderT Design Pattern vs Monad Transformer Stack?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/02-MTL/32-The-ReaderT-Capability-Design-Pattern.md#When-to-Use-it-ReaderT-Design-Pattern-vs-Monad-Transformer-Stack) + - [01 Monad Trans.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/22-Monad-Trans/01-Monad-Trans.md) + - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/22-Monad-Trans/01-Monad-Trans.md#Laws) + - [Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/22-Monad-Trans/01-Monad-Trans.md#Instances) + - [02 Monad Trans Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/22-Monad-Trans/02-Monad-Trans-Example.purs) + - [31 Drawbacks of MTL.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md) + - [`MonadState` Allows Only One State Manipulation Type](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md#MonadState-Allows-Only-One-State-Manipulation-Type) + - [`MonadState` & `MonadWriter` lose their state on a runtime error](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md#MonadState--MonadWriter-lose-their-state-on-a-runtime-error) + - [`WriterT` & `RWST` has a "space leak" problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md#WriterT--RWST-has-a-space-leak-problem) + - [N-squared-ish Monad Transformer Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md#N-squared-ish-Monad-Transformer-Instances) + - [Monad transformer stacks' type signatures get complicated quickly](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md#Monad-transformer-stacks-type-signatures-get-complicated-quickly) + - [The Order of the Monad Transformer Stack Matters](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/31-Drawbacks-of-MTL.md#The-Order-of-the-Monad-Transformer-Stack-Matters) + - [32 The ReaderT Capability Design Pattern.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/32-The-ReaderT-Capability-Design-Pattern.md) + - [The `ReaderT` and `Capability` Design Patterns](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/32-The-ReaderT-Capability-Design-Pattern.md#The-ReaderT-and-Capability-Design-Patterns) + - [When to Use it: ReaderT Design Pattern vs Monad Transformer Stack?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/02-MTL/32-The-ReaderT-Capability-Design-Pattern.md#When-to-Use-it-ReaderT-Design-Pattern-vs-Monad-Transformer-Stack) - 03 Free - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/ReadMe.md) - - [Overview](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/ReadMe.md#Overview) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/ReadMe.md) + - [Overview](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/ReadMe.md#Overview) - 01 What Is The Free Monad - - [01 What Are Free SomeTypeClass Types.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/01-What-Are-Free-SomeTypeClass-Types.md) - - [A "Free" Monoid](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/01-What-Are-Free-SomeTypeClass-Types.md#A-Free-Monoid) - - [02 What Is And Is Not The Free Monad.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/02-What-Is-And-Is-Not-The-Free-Monad.md) - - [03 The Original Free Monad.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/03-The-Original-Free-Monad.md) - - [Definition of Free Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/03-The-Original-Free-Monad.md#Definition-of-Free-Monad) - - [04 The Remorseless Free Monad.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/04-The-Remorseless-Free-Monad.md) - - [Similar Shapes: The Free Monoid and the Free Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/04-The-Remorseless-Free-Monad.md#Similar-Shapes-The-Free-Monoid-and-the-Free-Monad) - - [The Direction Matters](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/04-The-Remorseless-Free-Monad.md#The-Direction-Matters) + - [01 What Are Free SomeTypeClass Types.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/01-What-Are-Free-SomeTypeClass-Types.md) + - [A "Free" Monoid](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/01-What-Are-Free-SomeTypeClass-Types.md#A-Free-Monoid) + - [02 What Is And Is Not The Free Monad.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/02-What-Is-And-Is-Not-The-Free-Monad.md) + - [03 The Original Free Monad.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/03-The-Original-Free-Monad.md) + - [Definition of Free Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/03-The-Original-Free-Monad.md#Definition-of-Free-Monad) + - [04 The Remorseless Free Monad.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/04-The-Remorseless-Free-Monad.md) + - [Similar Shapes: The Free Monoid and the Free Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/04-The-Remorseless-Free-Monad.md#Similar-Shapes-The-Free-Monoid-and-the-Free-Monad) + - [The Direction Matters](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/01-What-Is-The-Free-Monad/04-The-Remorseless-Free-Monad.md#The-Direction-Matters) - 02 Why Use the Free Monad - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/ReadMe.md) - - [Brief Summary](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/ReadMe.md#Brief-Summary) - - [A Solution to the Expression Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/ReadMe.md#A-Solution-to-the-Expression-Problem) - - [Reading the Paper and This Folder Side-by-Side](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/ReadMe.md#Reading-the-Paper-and-This-Folder-Side-by-Side) - - [Contents of The Paper](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/ReadMe.md#Contents-of-The-Paper) - - [Correspondance Table](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/ReadMe.md#Correspondance-Table) - - [01 Seeing and Solving a Simple Example.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/01-Seeing-and-Solving-a-Simple-Example.md) - - [A Very Simple Example of The Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/01-Seeing-and-Solving-a-Simple-Example.md#A-Very-Simple-Example-of-The-Problem) - - [The Solution](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/01-Seeing-and-Solving-a-Simple-Example.md#The-Solution) - - [02 Reducing Boilerplate via Either.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/02-Reducing-Boilerplate-via-Either.md) - - [Defining NestedEither](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/02-Reducing-Boilerplate-via-Either.md#Defining-NestedEither) - - [Defining InjectProject](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/02-Reducing-Boilerplate-via-Either.md#Defining-InjectProject) - - [`Purescript-Either`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/02-Reducing-Boilerplate-via-Either.md#Purescript-Either) - - [03 Seeing and Solving a Harder Example.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/03-Seeing-and-Solving-a-Harder-Example.md) - - [Failing to Solve a Harder Version](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/03-Seeing-and-Solving-a-Harder-Example.md#Failing-to-Solve-a-Harder-Version) - - [Exploring Our Options](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/03-Seeing-and-Solving-a-Harder-Example.md#Exploring-Our-Options) - - [Solving the Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/03-Seeing-and-Solving-a-Harder-Example.md#Solving-the-Problem) - - [Revealing Coproduct](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/03-Seeing-and-Solving-a-Harder-Example.md#Revealing-Coproduct) - - [04 Writing the Evaluate Function.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/04-Writing-the-Evaluate-Function.md) - - [The Types' Functor Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/04-Writing-the-Evaluate-Function.md#The-Types-Functor-Instances) - - [A Simple Evaluation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/04-Writing-the-Evaluate-Function.md#A-Simple-Evaluation) - - [Including `Add` again](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/04-Writing-the-Evaluate-Function.md#Including-Add-again) - - [Explaining Terms](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/04-Writing-the-Evaluate-Function.md#Explaining-Terms) - - [All Code So Far and Evaluate](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/04-Writing-the-Evaluate-Function.md#All-Code-So-Far-and-Evaluate) - - [05 Optional Read: Writing the Show Function.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/05-Optional-Read--Writing-the-Show-Function.md) - - [All Code So Far and Show2](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/05-Optional-Read--Writing-the-Show-Function.md#All-Code-So-Far-and-Show2) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/ReadMe.md) + - [Brief Summary](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/ReadMe.md#Brief-Summary) + - [A Solution to the Expression Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/ReadMe.md#A-Solution-to-the-Expression-Problem) + - [Reading the Paper and This Folder Side-by-Side](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/ReadMe.md#Reading-the-Paper-and-This-Folder-Side-by-Side) + - [Contents of The Paper](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/ReadMe.md#Contents-of-The-Paper) + - [Correspondance Table](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/ReadMe.md#Correspondance-Table) + - [01 Seeing and Solving a Simple Example.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/01-Seeing-and-Solving-a-Simple-Example.md) + - [A Very Simple Example of The Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/01-Seeing-and-Solving-a-Simple-Example.md#A-Very-Simple-Example-of-The-Problem) + - [The Solution](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/01-Seeing-and-Solving-a-Simple-Example.md#The-Solution) + - [02 Reducing Boilerplate via Either.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/02-Reducing-Boilerplate-via-Either.md) + - [Defining NestedEither](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/02-Reducing-Boilerplate-via-Either.md#Defining-NestedEither) + - [Defining InjectProject](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/02-Reducing-Boilerplate-via-Either.md#Defining-InjectProject) + - [`Purescript-Either`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/02-Reducing-Boilerplate-via-Either.md#Purescript-Either) + - [03 Seeing and Solving a Harder Example.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/03-Seeing-and-Solving-a-Harder-Example.md) + - [Failing to Solve a Harder Version](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/03-Seeing-and-Solving-a-Harder-Example.md#Failing-to-Solve-a-Harder-Version) + - [Exploring Our Options](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/03-Seeing-and-Solving-a-Harder-Example.md#Exploring-Our-Options) + - [Solving the Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/03-Seeing-and-Solving-a-Harder-Example.md#Solving-the-Problem) + - [Revealing Coproduct](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/03-Seeing-and-Solving-a-Harder-Example.md#Revealing-Coproduct) + - [04 Writing the Evaluate Function.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/04-Writing-the-Evaluate-Function.md) + - [The Types' Functor Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/04-Writing-the-Evaluate-Function.md#The-Types-Functor-Instances) + - [A Simple Evaluation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/04-Writing-the-Evaluate-Function.md#A-Simple-Evaluation) + - [Including `Add` again](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/04-Writing-the-Evaluate-Function.md#Including-Add-again) + - [Explaining Terms](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/04-Writing-the-Evaluate-Function.md#Explaining-Terms) + - [All Code So Far and Evaluate](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/04-Writing-the-Evaluate-Function.md#All-Code-So-Far-and-Evaluate) + - [05 Optional Read: Writing the Show Function.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/05-Optional-Read--Writing-the-Show-Function.md) + - [All Code So Far and Show2](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/05-Optional-Read--Writing-the-Show-Function.md#All-Code-So-Far-and-Show2) - 06 From Expression to Free - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/ReadMe.md) - - [A Quick Overview of Some of Purescript's `Free` API](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/ReadMe.md#A-Quick-Overview-of-Some-of-Purescripts-Free-API) - - [LiftF](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/ReadMe.md#LiftF) - - [Wrap](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/ReadMe.md#Wrap) - - [Other Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/ReadMe.md#Other-Functions) - - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/ReadMe.md#Compilation-Instructions) - - [01 Value.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/01-Value.purs) - - [02 Add.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/02-Add.purs) - - [03 Multiply.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/03-Multiply.purs) - - [04 AddAndMultiply.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/04-AddAndMultiply.purs) - - [07 Defining Modular Monads.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/07-Defining-Modular-Monads.md) - - [Getting Around The Non-Free-Monad Limitation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/07-Defining-Modular-Monads.md#Getting-Around-The-Non-Free-Monad-Limitation) - - [Modular Effects via Languages](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/07-Defining-Modular-Monads.md#Modular-Effects-via-Languages) - - [Defining and Interpreting Languages for the Free Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/07-Defining-Modular-Monads.md#Defining-and-Interpreting-Languages-for-the-Free-Monad) - - [Example](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/07-Defining-Modular-Monads.md#Example) - - [08 Layered Compilers.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/08-Layered-Compilers.md) - - [Free Applicative](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/08-Layered-Compilers.md#Free-Applicative) - - [Related Posts](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/08-Layered-Compilers.md#Related-Posts) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/ReadMe.md) + - [A Quick Overview of Some of Purescript's `Free` API](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/ReadMe.md#A-Quick-Overview-of-Some-of-Purescripts-Free-API) + - [LiftF](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/ReadMe.md#LiftF) + - [Wrap](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/ReadMe.md#Wrap) + - [Other Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/ReadMe.md#Other-Functions) + - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/ReadMe.md#Compilation-Instructions) + - [01 Value.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/01-Value.purs) + - [02 Add.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/02-Add.purs) + - [03 Multiply.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/03-Multiply.purs) + - [04 AddAndMultiply.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/06-From-Expression-to-Free/04-AddAndMultiply.purs) + - [07 Defining Modular Monads.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/07-Defining-Modular-Monads.md) + - [Getting Around The Non-Free-Monad Limitation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/07-Defining-Modular-Monads.md#Getting-Around-The-Non-Free-Monad-Limitation) + - [Modular Effects via Languages](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/07-Defining-Modular-Monads.md#Modular-Effects-via-Languages) + - [Defining and Interpreting Languages for the Free Monad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/07-Defining-Modular-Monads.md#Defining-and-Interpreting-Languages-for-the-Free-Monad) + - [Example](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/07-Defining-Modular-Monads.md#Example) + - [08 Layered Compilers.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/08-Layered-Compilers.md) + - [Free Applicative](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/08-Layered-Compilers.md#Free-Applicative) + - [Related Posts](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/02-Why-Use-the-Free-Monad/08-Layered-Compilers.md#Related-Posts) - 03 From Free to Run - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/ReadMe.md) - - [01 From Either to Variant.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md) - - [Adding More Conditions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md#Adding-More-Conditions) - - [Using Variant](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md#Using-Variant) - - [Injection](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md#Injection) - - [Projection](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md#Projection) - - [Pattern Matching in Variant](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md#Pattern-Matching-in-Variant) - - [Updating Our Solution](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md#Updating-Our-Solution) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/ReadMe.md) + - [01 From Either to Variant.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md) + - [Adding More Conditions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md#Adding-More-Conditions) + - [Using Variant](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md#Using-Variant) + - [Injection](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md#Injection) + - [Projection](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md#Projection) + - [Pattern Matching in Variant](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md#Pattern-Matching-in-Variant) + - [Updating Our Solution](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/01-From-Either-to-Variant.md#Updating-Our-Solution) - 02 From Coproduct to VariantF - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/ReadMe.md) - - [Explaining `VariantF`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/ReadMe.md#Explaining-VariantF) - - [Composing Type-Level Types via `RowApply`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/ReadMe.md#Composing-Type-Level-Types-via-RowApply) - - [Defining Composable Algebras for Data Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/ReadMe.md#Defining-Composable-Algebras-for-Data-Types) - - [Running an Algebra on an Expression](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/ReadMe.md#Running-an-Algebra-on-an-Expression) - - [Final Result](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/ReadMe.md#Final-Result) - - [01 Value.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/01-Value.purs) - - [02 Add.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/02-Add.purs) - - [03 Multiply.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/03-Multiply.purs) - - [11 Original Gist.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/11-Original-Gist.md) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/ReadMe.md) + - [Explaining `VariantF`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/ReadMe.md#Explaining-VariantF) + - [Composing Type-Level Types via `RowApply`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/ReadMe.md#Composing-Type-Level-Types-via-RowApply) + - [Defining Composable Algebras for Data Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/ReadMe.md#Defining-Composable-Algebras-for-Data-Types) + - [Running an Algebra on an Expression](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/ReadMe.md#Running-an-Algebra-on-an-Expression) + - [Final Result](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/ReadMe.md#Final-Result) + - [01 Value.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/01-Value.purs) + - [02 Add.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/02-Add.purs) + - [03 Multiply.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/03-Multiply.purs) + - [11 Original Gist.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/02-From-Coproduct-to-VariantF/11-Original-Gist.md) - 03 Explaining Run - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md) - - [What is `Run`?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#What-is-Run) - - [Comparing Run to Free and MTL](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#Comparing-Run-to-Free-and-MTL) - - [Free and Run: Some Core Functions Compared](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#Free-and-Run-Some-Core-Functions-Compared) - - [Naming Conventions for Effects](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#Naming-Conventions-for-Effects) - - [Similarities to MTL](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#Similarities-to-MTL) - - [Type Aliases](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#Type-Aliases) - - [MTL-Like Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#MTL-Like-Functions) - - [Examples of MTL-Like Run-Based Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#Examples-of-MTL-Like-Run-Based-Code) - - [01 Value.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/01-Value.purs) - - [02 Add.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/02-Add.purs) - - [03 Multiply.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/03-Multiply.purs) - - [04 Drawbacks of Free.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/03-Free/04-Drawbacks-of-Free.md) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md) + - [What is `Run`?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#What-is-Run) + - [Comparing Run to Free and MTL](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#Comparing-Run-to-Free-and-MTL) + - [Free and Run: Some Core Functions Compared](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#Free-and-Run-Some-Core-Functions-Compared) + - [Naming Conventions for Effects](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#Naming-Conventions-for-Effects) + - [Similarities to MTL](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#Similarities-to-MTL) + - [Type Aliases](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#Type-Aliases) + - [MTL-Like Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#MTL-Like-Functions) + - [Examples of MTL-Like Run-Based Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/ReadMe.md#Examples-of-MTL-Like-Run-Based-Code) + - [01 Value.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/01-Value.purs) + - [02 Add.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/02-Add.purs) + - [03 Multiply.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/03-From-Free-to-Run/03-Explaining-Run/03-Multiply.purs) + - [04 Drawbacks of Free.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/03-Free/04-Drawbacks-of-Free.md) - 11 Hello World - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/11-Hello-World/ReadMe.md) - - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/11-Hello-World/ReadMe.md#Compilation-Instructions) - - [01 Design Thought Process.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/11-Hello-World/01-Design-Thought-Process.md) - - [Level 4 / Core](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/11-Hello-World/01-Design-Thought-Process.md#Level-4--Core) - - [Level 3 / Domain](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/11-Hello-World/01-Design-Thought-Process.md#Level-3--Domain) - - [Level 2 / API](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/11-Hello-World/01-Design-Thought-Process.md#Level-2--API) - - [Level 1 / Infrastructure](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/11-Hello-World/01-Design-Thought-Process.md#Level-1--Infrastructure) - - [Level 0 / Machine Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/11-Hello-World/01-Design-Thought-Process.md#Level-0--Machine-Code) - - [02 ReaderT.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/11-Hello-World/02-ReaderT.purs) - - [03 Free.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/11-Hello-World/03-Free.purs) - - [04 Run.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/11-Hello-World/04-Run.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/11-Hello-World/ReadMe.md) + - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/11-Hello-World/ReadMe.md#Compilation-Instructions) + - [01 Design Thought Process.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/11-Hello-World/01-Design-Thought-Process.md) + - [Level 4 / Core](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/11-Hello-World/01-Design-Thought-Process.md#Level-4--Core) + - [Level 3 / Domain](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/11-Hello-World/01-Design-Thought-Process.md#Level-3--Domain) + - [Level 2 / API](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/11-Hello-World/01-Design-Thought-Process.md#Level-2--API) + - [Level 1 / Infrastructure](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/11-Hello-World/01-Design-Thought-Process.md#Level-1--Infrastructure) + - [Level 0 / Machine Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/11-Hello-World/01-Design-Thought-Process.md#Level-0--Machine-Code) + - [02 ReaderT.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/11-Hello-World/02-ReaderT.purs) + - [03 Free.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/11-Hello-World/03-Free.purs) + - [04 Run.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/11-Hello-World/04-Run.purs) - 12 Number Comparison - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/ReadMe.md) - - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/ReadMe.md#Compilation-Instructions) - - [01 Design Thought Process.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/01-Design-Thought-Process.md) - - [Level 4 / Core](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/01-Design-Thought-Process.md#Level-4--Core) - - [Level 3 / Domain](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/01-Design-Thought-Process.md#Level-3--Domain) - - [Level 2 / API](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/01-Design-Thought-Process.md#Level-2--API) - - [Level 1 / Infrastructure](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/01-Design-Thought-Process.md#Level-1--Infrastructure) - - [Level 0 / Machine Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/01-Design-Thought-Process.md#Level-0--Machine-Code) - - [02 ReaderT.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/02-ReaderT.purs) - - [03 Free.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/03-Free.purs) - - [04 Run.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/04-Run.purs) - - [21 Modern FP Architecture.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md) - - [Properties of "Effects"](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Properties-of-Effects) - - [Extensible](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Extensible) - - [Composable](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Composable) - - [Efficient](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Efficient) - - [Terse](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Terse) - - [Inferrable](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Inferrable) - - [Key Articles](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Key-Articles) - - [Evaluating MTL and Free](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Evaluating-MTL-and-Free) - - [Reducing Boilerplate via Atom's Snippets Feature](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Reducing-Boilerplate-via-Atoms-Snippets-Feature) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/ReadMe.md) + - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/ReadMe.md#Compilation-Instructions) + - [01 Design Thought Process.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/01-Design-Thought-Process.md) + - [Level 4 / Core](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/01-Design-Thought-Process.md#Level-4--Core) + - [Level 3 / Domain](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/01-Design-Thought-Process.md#Level-3--Domain) + - [Level 2 / API](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/01-Design-Thought-Process.md#Level-2--API) + - [Level 1 / Infrastructure](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/01-Design-Thought-Process.md#Level-1--Infrastructure) + - [Level 0 / Machine Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/01-Design-Thought-Process.md#Level-0--Machine-Code) + - [02 ReaderT.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/02-ReaderT.purs) + - [03 Free.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/03-Free.purs) + - [04 Run.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/12-Number-Comparison/04-Run.purs) + - [21 Modern FP Architecture.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md) + - [Properties of "Effects"](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Properties-of-Effects) + - [Extensible](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Extensible) + - [Composable](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Composable) + - [Efficient](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Efficient) + - [Terse](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Terse) + - [Inferrable](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Inferrable) + - [Key Articles](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Key-Articles) + - [Evaluating MTL and Free](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Evaluating-MTL-and-Free) + - [Reducing Boilerplate via Atom's Snippets Feature](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/05-Application-Structure/src/21-Modern-FP-Architecture.md#Reducing-Boilerplate-via-Atoms-Snippets-Feature) - 06 Type Level Programming - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/ReadMe.md) - - [Example](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/ReadMe.md#Example) - - [A Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/ReadMe.md#A-Problem) - - [A Solution](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/ReadMe.md#A-Solution) - - [Issues with Type-Level Programming](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/ReadMe.md#Issues-with-Type-Level-Programming) - - [Other Learning Sources](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/ReadMe.md#Other-Learning-Sources) - - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/ReadMe.md#Compilation-Instructions) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/ReadMe.md) + - [Example](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/ReadMe.md#Example) + - [A Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/ReadMe.md#A-Problem) + - [A Solution](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/ReadMe.md#A-Solution) + - [Issues with Type-Level Programming](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/ReadMe.md#Issues-with-Type-Level-Programming) + - [Other Learning Sources](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/ReadMe.md#Other-Learning-Sources) + - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/ReadMe.md#Compilation-Instructions) - src - - [01 Understanding a Type Level Function.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/src/01-Understanding-a-Type-Level-Function.md) - - [Tips on Rows](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/src/01-Understanding-a-Type-Level-Function.md#Tips-on-Rows) - - [Reading a Type-Level Function](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/src/01-Understanding-a-Type-Level-Function.md#Reading-a-Type-Level-Function) - - [Writing a Type-Level Function](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/src/01-Understanding-a-Type-Level-Function.md#Writing-a-Type-Level-Function) - - [UnsafeCoerce](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/src/01-Understanding-a-Type-Level-Function.md#UnsafeCoerce) - - [02 Symbol Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/src/02-Symbol-Example.purs) - - [03 Row Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/src/03-Row-Example.purs) - - [04 Type Level Primitives.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/src/04-Type-Level-Primitives.md) - - [Types of Relationships](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/src/04-Type-Level-Primitives.md#Types-of-Relationships) - - [Type-Level Types, Values, and Proxies](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/src/04-Type-Level-Primitives.md#Type-Level-Types-Values-and-Proxies) - - [Type-Level Modules](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/06-Type-Level-Programming/src/04-Type-Level-Primitives.md#Type-Level-Modules) + - [01 Understanding a Type Level Function.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/src/01-Understanding-a-Type-Level-Function.md) + - [Tips on Rows](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/src/01-Understanding-a-Type-Level-Function.md#Tips-on-Rows) + - [Reading a Type-Level Function](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/src/01-Understanding-a-Type-Level-Function.md#Reading-a-Type-Level-Function) + - [Writing a Type-Level Function](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/src/01-Understanding-a-Type-Level-Function.md#Writing-a-Type-Level-Function) + - [UnsafeCoerce](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/src/01-Understanding-a-Type-Level-Function.md#UnsafeCoerce) + - [02 Symbol Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/src/02-Symbol-Example.purs) + - [03 Row Example.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/src/03-Row-Example.purs) + - [04 Type Level Primitives.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/src/04-Type-Level-Primitives.md) + - [Types of Relationships](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/src/04-Type-Level-Primitives.md#Types-of-Relationships) + - [Type-Level Types, Values, and Proxies](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/src/04-Type-Level-Primitives.md#Type-Level-Types-Values-and-Proxies) + - [Type-Level Modules](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/06-Type-Level-Programming/src/04-Type-Level-Primitives.md#Type-Level-Modules) - 07 Testing - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/ReadMe.md) - - [Test Conventions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/ReadMe.md#Test-Conventions) - - [Breaking Conventions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/ReadMe.md#Breaking-Conventions) - - [Libraries Used](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/ReadMe.md#Libraries-Used) - - [Running the Tests](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/ReadMe.md#Running-the-Tests) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/ReadMe.md) + - [Test Conventions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/ReadMe.md#Test-Conventions) + - [Breaking Conventions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/ReadMe.md#Breaking-Conventions) + - [Libraries Used](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/ReadMe.md#Libraries-Used) + - [Running the Tests](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/ReadMe.md#Running-the-Tests) - test - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/ReadMe.md) - - [What is Unit Testing](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/ReadMe.md#What-is-Unit-Testing) - - [A Brief Note on Golden Testing](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/ReadMe.md#A-Brief-Note-on-Golden-Testing) - - [Why Unit Testing Fails](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/ReadMe.md#Why-Unit-Testing-Fails) - - [What is Property Testing and Why It Succeeds](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/ReadMe.md#What-is-Property-Testing-and-Why-It-Succeeds) - - [The Trustworthiness of Property Testing](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/ReadMe.md#The-Trustworthiness-of-Property-Testing) - - [Shrinking: Integrated vs Type-Directed](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/ReadMe.md#Shrinking-Integrated-vs-Type-Directed) - - [The Limits of Property Testing](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/ReadMe.md#The-Limits-of-Property-Testing) - - [Conclusion](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/ReadMe.md#Conclusion) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/ReadMe.md) + - [What is Unit Testing](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/ReadMe.md#What-is-Unit-Testing) + - [A Brief Note on Golden Testing](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/ReadMe.md#A-Brief-Note-on-Golden-Testing) + - [Why Unit Testing Fails](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/ReadMe.md#Why-Unit-Testing-Fails) + - [What is Property Testing and Why It Succeeds](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/ReadMe.md#What-is-Property-Testing-and-Why-It-Succeeds) + - [The Trustworthiness of Property Testing](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/ReadMe.md#The-Trustworthiness-of-Property-Testing) + - [Shrinking: Integrated vs Type-Directed](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/ReadMe.md#Shrinking-Integrated-vs-Type-Directed) + - [The Limits of Property Testing](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/ReadMe.md#The-Limits-of-Property-Testing) + - [Conclusion](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/ReadMe.md#Conclusion) - 01 Unit - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/01-Unit/ReadMe.md) - - [Spec](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/01-Unit/ReadMe.md#Spec) - - [Test Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/01-Unit/ReadMe.md#Test-Instructions) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/01-Unit/ReadMe.md) + - [Spec](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/01-Unit/ReadMe.md#Spec) + - [Test Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/01-Unit/ReadMe.md#Test-Instructions) - 01 Spec Examples - 01 Self Contained - - [01 Console Reporter.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/01-Self-Contained/01-Console-Reporter.purs) - - [02 Dot Reporter.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/01-Self-Contained/02-Dot-Reporter.purs) - - [03 Spec Reporter.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/01-Self-Contained/03-Spec-Reporter.purs) - - [04 Tap Reporter.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/01-Self-Contained/04-Tap-Reporter.purs) + - [01 Console Reporter.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/01-Self-Contained/01-Console-Reporter.purs) + - [02 Dot Reporter.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/01-Self-Contained/02-Dot-Reporter.purs) + - [03 Spec Reporter.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/01-Self-Contained/03-Spec-Reporter.purs) + - [04 Tap Reporter.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/01-Self-Contained/04-Tap-Reporter.purs) - 02 Modulated - - [Runner.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/02-Modulated/Runner.purs) - - [Spec1.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/02-Modulated/Spec1.purs) - - [Spec2.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/02-Modulated/Spec2.purs) - - [Spec3.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/02-Modulated/Spec3.purs) - - [FocusedSpec.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/FocusedSpec.purs) + - [Runner.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/02-Modulated/Runner.purs) + - [Spec1.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/02-Modulated/Spec1.purs) + - [Spec2.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/02-Modulated/Spec2.purs) + - [Spec3.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/02-Modulated/Spec3.purs) + - [FocusedSpec.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/01-Unit/01-Spec-Examples/FocusedSpec.purs) - 02 Quick Check and Laws - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/ReadMe.md) - - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/ReadMe.md#Compilation-Instructions) - - [01 Gen and MonadGen.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/01-Gen-and-MonadGen.md) - - [How QuickCheck Generates Random Data](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/01-Gen-and-MonadGen.md#How-QuickCheck-Generates-Random-Data) - - [The `Gen` Monad and its `MonadGen` Type Class](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/01-Gen-and-MonadGen.md#The-Gen-Monad-and-its-MonadGen-Type-Class) - - [The Importance of the `Seed` Value](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/01-Gen-and-MonadGen.md#The-Importance-of-the-Seed-Value) - - [02 Test Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/02-Test-Syntax.purs) - - [03 Generating Random Data.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/03-Generating-Random-Data.purs) - - [04 Generating Strings.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/04-Generating-Strings.purs) - - [05 Arbitrary.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/05-Arbitrary.purs) - - [06 Coarbitrary.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/06-Coarbitrary.md) - - [07 Problems with Arbitrary.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/07-Problems-with-Arbitrary.md) - - [08 Quick Check Laws.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/08-Quick-Check-Laws.purs) - - [03 Property Testing Libraries Comparison.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/07-Testing/test/03-Property-Testing-Libraries-Comparison.md) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/ReadMe.md) + - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/ReadMe.md#Compilation-Instructions) + - [01 Gen and MonadGen.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/01-Gen-and-MonadGen.md) + - [How QuickCheck Generates Random Data](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/01-Gen-and-MonadGen.md#How-QuickCheck-Generates-Random-Data) + - [The `Gen` Monad and its `MonadGen` Type Class](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/01-Gen-and-MonadGen.md#The-Gen-Monad-and-its-MonadGen-Type-Class) + - [The Importance of the `Seed` Value](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/01-Gen-and-MonadGen.md#The-Importance-of-the-Seed-Value) + - [02 Test Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/02-Test-Syntax.purs) + - [03 Generating Random Data.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/03-Generating-Random-Data.purs) + - [04 Generating Strings.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/04-Generating-Strings.purs) + - [05 Arbitrary.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/05-Arbitrary.purs) + - [06 Coarbitrary.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/06-Coarbitrary.md) + - [07 Problems with Arbitrary.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/07-Problems-with-Arbitrary.md) + - [08 Quick Check Laws.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/02-Quick-Check-and-Laws/08-Quick-Check-Laws.purs) + - [03 Property Testing Libraries Comparison.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/07-Testing/test/03-Property-Testing-Libraries-Comparison.md) - 08 Benchmarking - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/08-Benchmarking/ReadMe.md) - - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/08-Benchmarking/ReadMe.md#Compilation-Instructions) - - [Generating benchmark results](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/08-Benchmarking/ReadMe.md#Generating-benchmark-results) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/08-Benchmarking/ReadMe.md) + - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/08-Benchmarking/ReadMe.md#Compilation-Instructions) + - [Generating benchmark results](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/08-Benchmarking/ReadMe.md#Generating-benchmark-results) - benchmark - - [01 Benchmark Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/08-Benchmarking/benchmark/01-Benchmark-Syntax.purs) -- [11 Conclusion.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/11-Conclusion.md) - - [Style Guide for Libraries](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/21-Hello-World/11-Conclusion.md#Style-Guide-for-Libraries) + - [01 Benchmark Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/08-Benchmarking/benchmark/01-Benchmark-Syntax.purs) +- [11 Conclusion.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/11-Conclusion.md) + - [Style Guide for Libraries](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/21-Hello-World/11-Conclusion.md#Style-Guide-for-Libraries) ## 22 Projects -- [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/ReadMe.md) - - [Other "Example Projects"](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/ReadMe.md#Other-Example-Projects) - - [Projects in non-JS backends](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/ReadMe.md#Projects-in-non-JS-backends) - - [Clarifying Our Terminology](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/ReadMe.md#Clarifying-Our-Terminology) - - [Libraries Overviewed](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/ReadMe.md#Libraries-Overviewed) - - [Projects](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/ReadMe.md#Projects) - - [License](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/ReadMe.md#License) - - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/ReadMe.md#Compilation-Instructions) - - [Setting Up This Folder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/ReadMe.md#Setting-Up-This-Folder) - - [Building/Running Each Approach](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/ReadMe.md#BuildingRunning-Each-Approach) +- [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/ReadMe.md) + - [Other "Example Projects"](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/ReadMe.md#Other-Example-Projects) + - [Projects in non-JS backends](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/ReadMe.md#Projects-in-non-JS-backends) + - [Clarifying Our Terminology](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/ReadMe.md#Clarifying-Our-Terminology) + - [Libraries Overviewed](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/ReadMe.md#Libraries-Overviewed) + - [Projects](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/ReadMe.md#Projects) + - [License](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/ReadMe.md#License) + - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/ReadMe.md#Compilation-Instructions) + - [Setting Up This Folder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/ReadMe.md#Setting-Up-This-Folder) + - [Building/Running Each Approach](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/ReadMe.md#BuildingRunning-Each-Approach) - benchmark - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/benchmark/ReadMe.md) - - [Generating benchmark results](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/benchmark/ReadMe.md#Generating-benchmark-results) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/benchmark/ReadMe.md) + - [Generating benchmark results](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/benchmark/ReadMe.md#Generating-benchmark-results) - 11 Random Number - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/benchmark/11-Random-Number/ReadMe.md) - - [Interpreting These Benchmarks](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/benchmark/11-Random-Number/ReadMe.md#Interpreting-These-Benchmarks) - - [01 Benchmark.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/benchmark/11-Random-Number/01-Benchmark.purs) - - [02 Generators.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/benchmark/11-Random-Number/02-Generators.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/benchmark/11-Random-Number/ReadMe.md) + - [Interpreting These Benchmarks](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/benchmark/11-Random-Number/ReadMe.md#Interpreting-These-Benchmarks) + - [01 Benchmark.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/benchmark/11-Random-Number/01-Benchmark.purs) + - [02 Generators.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/benchmark/11-Random-Number/02-Generators.purs) - src - 01 Libraries - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/ReadMe.md) - - [Halogen.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Halogen.md) - - [Learn Halogen v5 (stable, unreleased)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Halogen.md#Learn-Halogen-v5-stable-unreleased) - - [Learn Halogen v4 (stable, released, but will be outdated soon)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Halogen.md#Learn-Halogen-v4-stable-released-but-will-be-outdated-soon) - - [Halogen Guide](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Halogen.md#Halogen-Guide) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/ReadMe.md) + - [Halogen.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Halogen.md) + - [Learn Halogen v5 (stable, unreleased)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Halogen.md#Learn-Halogen-v5-stable-unreleased) + - [Learn Halogen v4 (stable, released, but will be outdated soon)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Halogen.md#Learn-Halogen-v4-stable-released-but-will-be-outdated-soon) + - [Halogen Guide](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Halogen.md#Halogen-Guide) - Http - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Http/ReadMe.md) - - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Http/01-Syntax.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Http/ReadMe.md) + - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Http/01-Syntax.purs) - Node FS - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Node-FS/ReadMe.md) - - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Node-FS/01-Syntax.purs) - - [12 Print All Files.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Node-FS/12-Print-All-Files.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Node-FS/ReadMe.md) + - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Node-FS/01-Syntax.purs) + - [12 Print All Files.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Node-FS/12-Print-All-Files.purs) - Node.ReadLine - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Node.ReadLine/ReadMe.md) - - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Node.ReadLine/ReadMe.md#Compilation-Instructions) - - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Node.ReadLine/01-Syntax.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Node.ReadLine/ReadMe.md) + - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Node.ReadLine/ReadMe.md#Compilation-Instructions) + - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Node.ReadLine/01-Syntax.purs) - OptParser - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/OptParser/ReadMe.md) - - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/OptParser/01-Syntax.purs) - - [11 GetRootDirViaAbsolutePath.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/OptParser/11-GetRootDirViaAbsolutePath.purs) - - [12 GetRootDirViaEitherPath.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/OptParser/12-GetRootDirViaEitherPath.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/OptParser/ReadMe.md) + - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/OptParser/01-Syntax.purs) + - [11 GetRootDirViaAbsolutePath.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/OptParser/11-GetRootDirViaAbsolutePath.purs) + - [12 GetRootDirViaEitherPath.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/OptParser/12-GetRootDirViaEitherPath.purs) - Parallel - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Parallel/ReadMe.md) - - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Parallel/01-Syntax.purs) - - [11 Instance for Parallel.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Parallel/11-Instance-for-Parallel.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Parallel/ReadMe.md) + - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Parallel/01-Syntax.purs) + - [11 Instance for Parallel.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Parallel/11-Instance-for-Parallel.purs) - String Parsers - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/String-Parsers/ReadMe.md) - - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/String-Parsers/01-Syntax.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/String-Parsers/ReadMe.md) + - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/String-Parsers/01-Syntax.purs) - Tree - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Tree/ReadMe.md) - - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/01-Libraries/Tree/01-Syntax.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Tree/ReadMe.md) + - [01 Syntax.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/01-Libraries/Tree/01-Syntax.purs) - 11 Random Number - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/ReadMe.md) - - [Purpose: Exploring The Various Ways One Can Structure the Application](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/ReadMe.md#Purpose-Exploring-The-Various-Ways-One-Can-Structure-the-Application) - - [Libraries Used](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/ReadMe.md#Libraries-Used) - - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/ReadMe.md#Compilation-Instructions) - - [01 Design Thought Process.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md) - - [Level 4 / Core](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md#Level-4--Core) - - [Level 3 / Domain](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md#Level-3--Domain) - - [Level 2 / API](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md#Level-2--API) - - [Level 1 / Infrastructure](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md#Level-1--Infrastructure) - - [Level 0 / Machine Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md#Level-0--Machine-Code) - - [Code Warning](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md#Code-Warning) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/ReadMe.md) + - [Purpose: Exploring The Various Ways One Can Structure the Application](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/ReadMe.md#Purpose-Exploring-The-Various-Ways-One-Can-Structure-the-Application) + - [Libraries Used](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/ReadMe.md#Libraries-Used) + - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/ReadMe.md#Compilation-Instructions) + - [01 Design Thought Process.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md) + - [Level 4 / Core](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md#Level-4--Core) + - [Level 3 / Domain](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md#Level-3--Domain) + - [Level 2 / API](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md#Level-2--API) + - [Level 1 / Infrastructure](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md#Level-1--Infrastructure) + - [Level 0 / Machine Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md#Level-0--Machine-Code) + - [Code Warning](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/01-Design-Thought-Process.md#Code-Warning) - 02 Shared Code - 01 Core - - [01 Bounded.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/02-Shared-Code/01-Core/01-Bounded.purs) - - [02 RemainingGuesses.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/02-Shared-Code/01-Core/02-RemainingGuesses.purs) - - [03 GameTypes.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/02-Shared-Code/01-Core/03-GameTypes.purs) - - [04 Reexport All Modules.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/02-Shared-Code/01-Core/04-Reexport-All-Modules.purs) + - [01 Bounded.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/02-Shared-Code/01-Core/01-Bounded.purs) + - [02 RemainingGuesses.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/02-Shared-Code/01-Core/02-RemainingGuesses.purs) + - [03 GameTypes.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/02-Shared-Code/01-Core/03-GameTypes.purs) + - [04 Reexport All Modules.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/02-Shared-Code/01-Core/04-Reexport-All-Modules.purs) - 04 Infrastructure - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/02-Shared-Code/04-Infrastructure/ReadMe.md) - - [01 ReadLine Aff.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/02-Shared-Code/04-Infrastructure/01-ReadLine-Aff.purs) - - [02 User Input.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/02-Shared-Code/04-Infrastructure/02-User-Input.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/02-Shared-Code/04-Infrastructure/ReadMe.md) + - [01 ReadLine Aff.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/02-Shared-Code/04-Infrastructure/01-ReadLine-Aff.purs) + - [02 User Input.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/02-Shared-Code/04-Infrastructure/02-User-Input.purs) - 11 ReaderT: Standard - - [02 Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/11-ReaderT--Standard/02-Domain.purs) - - [03 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/11-ReaderT--Standard/03-API.purs) + - [02 Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/11-ReaderT--Standard/02-Domain.purs) + - [03 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/11-ReaderT--Standard/03-API.purs) - 04 Infrastructure - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/11-ReaderT--Standard/04-Infrastructure/ReadMe.md) - - [02 Terminal.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/11-ReaderT--Standard/04-Infrastructure/02-Terminal.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/11-ReaderT--Standard/04-Infrastructure/ReadMe.md) + - [02 Terminal.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/11-ReaderT--Standard/04-Infrastructure/02-Terminal.purs) - 05 Main - - [01 Console.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/11-ReaderT--Standard/05-Main/01-Console.purs) - - [02 Halogen.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/11-ReaderT--Standard/05-Main/02-Halogen.purs) - - [10 A Second Approach.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/11-ReaderT--Standard/10-A-Second-Approach.md) - - [11 Same Monad.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/11-Random-Number/11-ReaderT--Standard/11-Same-Monad.purs) + - [01 Console.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/11-ReaderT--Standard/05-Main/01-Console.purs) + - [02 Halogen.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/11-ReaderT--Standard/05-Main/02-Halogen.purs) + - [10 A Second Approach.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/11-ReaderT--Standard/10-A-Second-Approach.md) + - [11 Same Monad.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/11-Random-Number/11-ReaderT--Standard/11-Same-Monad.purs) - 12 Table of Contents - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/ReadMe.md) - - [Libraries Used](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/ReadMe.md#Libraries-Used) - - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/ReadMe.md#Compilation-Instructions) - - [01 Design Thought Process.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md) - - [Specification](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Specification) - - [Table of Contents](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Table-of-Contents) - - [Top-Level Folder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Top-Level-Folder) - - [Table of Contents](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Table-of-Contents) - - [Getting Started](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Getting-Started) - - [Build Tools](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Build-Tools) - - [Application Structure](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Application-Structure) - - [Level 4 / Core](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Level-4--Core) - - [Level 3 / Domain](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Level-3--Domain) - - [Level 2 / API](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Level-2--API) - - [Level 1 / Infrastructure](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Level-1--Infrastructure) - - [Level 0 / Machine Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Level-0--Machine-Code) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/ReadMe.md) + - [Libraries Used](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/ReadMe.md#Libraries-Used) + - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/ReadMe.md#Compilation-Instructions) + - [01 Design Thought Process.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md) + - [Specification](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Specification) + - [Table of Contents](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Table-of-Contents) + - [Top-Level Folder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Top-Level-Folder) + - [Table of Contents](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Table-of-Contents) + - [Getting Started](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Getting-Started) + - [Build Tools](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Build-Tools) + - [Application Structure](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Application-Structure) + - [Level 4 / Core](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Level-4--Core) + - [Level 3 / Domain](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Level-3--Domain) + - [Level 2 / API](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Level-2--API) + - [Level 1 / Infrastructure](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Level-1--Infrastructure) + - [Level 0 / Machine Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/01-Design-Thought-Process.md#Level-0--Machine-Code) - 02 Shared Code - 01 Core - - [01 Paths.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/01-Core/01-Paths.purs) - - [02 FileTypes.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/01-Core/02-FileTypes.purs) - - [03 GitHubLinks.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/01-Core/03-GitHubLinks.purs) - - [04 Render Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/01-Core/04-Render-Types.purs) + - [01 Paths.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/01-Core/01-Paths.purs) + - [02 FileTypes.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/01-Core/02-FileTypes.purs) + - [03 GitHubLinks.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/01-Core/03-GitHubLinks.purs) + - [04 Render Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/01-Core/04-Render-Types.purs) - 02 Domain - - [02 Parser.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/02-Domain/02-Parser.purs) + - [02 Parser.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/02-Domain/02-Parser.purs) - 03 Renderer - - [01 Markdown.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/02-Domain/03-Renderer/01-Markdown.purs) - - [02 MarkdownRenderer.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/02-Domain/03-Renderer/02-MarkdownRenderer.purs) - - [04 Env.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/02-Domain/04-Env.purs) - - [03 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/03-API.purs) + - [01 Markdown.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/02-Domain/03-Renderer/01-Markdown.purs) + - [02 MarkdownRenderer.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/02-Domain/03-Renderer/02-MarkdownRenderer.purs) + - [04 Env.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/02-Domain/04-Env.purs) + - [03 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/03-API.purs) - 04 Infrastructure - - [01 OS FFI.js](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/04-Infrastructure/01-OS-FFI.js) - - [01 OS FFI.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/04-Infrastructure/01-OS-FFI.purs) - - [02 HTTP.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/04-Infrastructure/02-HTTP.purs) - - [03 OptParse.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/02-Shared-Code/04-Infrastructure/03-OptParse.purs) + - [01 OS FFI.js](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/04-Infrastructure/01-OS-FFI.js) + - [01 OS FFI.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/04-Infrastructure/01-OS-FFI.purs) + - [02 HTTP.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/04-Infrastructure/02-HTTP.purs) + - [03 OptParse.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/02-Shared-Code/04-Infrastructure/03-OptParse.purs) - 11 ReaderT - - [02 Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/11-ReaderT/02-Domain.purs) - - [03 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/11-ReaderT/03-API.purs) - - [04 Infrastructure.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/11-ReaderT/04-Infrastructure.md) - - [05 Main.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/11-ReaderT/05-Main.purs) + - [02 Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/11-ReaderT/02-Domain.purs) + - [03 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/11-ReaderT/03-API.purs) + - [04 Infrastructure.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/11-ReaderT/04-Infrastructure.md) + - [05 Main.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/11-ReaderT/05-Main.purs) - 12 Run - - [02 Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/12-Run/02-Domain.purs) - - [03 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/12-Run/03-API.purs) - - [04 Infrastructure.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/12-Run/04-Infrastructure.md) - - [05 Main.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/src/12-Table-of-Contents/12-Run/05-Main.purs) + - [02 Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/12-Run/02-Domain.purs) + - [03 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/12-Run/03-API.purs) + - [04 Infrastructure.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/12-Run/04-Infrastructure.md) + - [05 Main.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/src/12-Table-of-Contents/12-Run/05-Main.purs) - test - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/ReadMe.md) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/ReadMe.md) - 11 Random Number - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/ReadMe.md) - - [Where's the `Free`-based Tests?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/ReadMe.md#Wheres-the-Free-based-Tests) - - [01 Test Thought Process.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md) - - [Overview of Our Testing Approach](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#Overview-of-Our-Testing-Approach) - - [Reviewing Our Game's Properties](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#Reviewing-Our-Games-Properties) - - [Generating Our Test Data](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#Generating-Our-Test-Data) - - [Random Number](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#Random-Number) - - [User Inputs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#User-Inputs) - - [Game Result](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#Game-Result) - - [Defining its Arbitrary instance](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#Defining-its-Arbitrary-instance) - - [02 Generators.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/02-Generators.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/ReadMe.md) + - [Where's the `Free`-based Tests?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/ReadMe.md#Wheres-the-Free-based-Tests) + - [01 Test Thought Process.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md) + - [Overview of Our Testing Approach](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#Overview-of-Our-Testing-Approach) + - [Reviewing Our Game's Properties](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#Reviewing-Our-Games-Properties) + - [Generating Our Test Data](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#Generating-Our-Test-Data) + - [Random Number](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#Random-Number) + - [User Inputs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#User-Inputs) + - [Game Result](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#Game-Result) + - [Defining its Arbitrary instance](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/01-Test-Thought-Process.md#Defining-its-Arbitrary-instance) + - [02 Generators.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/02-Generators.purs) - 11 ReaderT: Standard - - [01 Different Monad.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/11-ReaderT--Standard/01-Different-Monad.purs) - - [02 Test Analysis.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/11-ReaderT--Standard/02-Test-Analysis.md) - - [03 Same Monad.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/11-Random-Number/11-ReaderT--Standard/03-Same-Monad.purs) + - [01 Different Monad.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/11-ReaderT--Standard/01-Different-Monad.purs) + - [02 Test Analysis.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/11-ReaderT--Standard/02-Test-Analysis.md) + - [03 Same Monad.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/11-Random-Number/11-ReaderT--Standard/03-Same-Monad.purs) - 12 Table of Contents - - [01 Test Thought Process.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md) - - [Overview of Our Testing Approach](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#Overview-of-Our-Testing-Approach) - - [The Random Number Game Approach Won't Work](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#The-Random-Number-Game-Approach-Wont-Work) - - [Decomposing Our Tests](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#Decomposing-Our-Tests) - - [The Main Logic Tests](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#The-Main-Logic-Tests) - - [Generating Data for the Main Tests](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#Generating-Data-for-the-Main-Tests) - - [The "Outsourced" Logic Tests](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#The-Outsourced-Logic-Tests) - - [Generating Our Test Data](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#Generating-Our-Test-Data) - - [The Golden Test](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#The-Golden-Test) - - [Generating Our Test Data](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#Generating-Our-Test-Data) + - [01 Test Thought Process.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md) + - [Overview of Our Testing Approach](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#Overview-of-Our-Testing-Approach) + - [The Random Number Game Approach Won't Work](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#The-Random-Number-Game-Approach-Wont-Work) + - [Decomposing Our Tests](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#Decomposing-Our-Tests) + - [The Main Logic Tests](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#The-Main-Logic-Tests) + - [Generating Data for the Main Tests](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#Generating-Data-for-the-Main-Tests) + - [The "Outsourced" Logic Tests](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#The-Outsourced-Logic-Tests) + - [Generating Our Test Data](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#Generating-Our-Test-Data) + - [The Golden Test](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#The-Golden-Test) + - [Generating Our Test Data](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/01-Test-Thought-Process.md#Generating-Our-Test-Data) - 02 Main Logic - - [01 Common.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/02-Main-Logic/01-Common.purs) - - [02 Generators.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/02-Main-Logic/02-Generators.purs) - - [03 ToCTestData.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/02-Main-Logic/03-ToCTestData.purs) - - [11 ReaderT.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/02-Main-Logic/11-ReaderT.purs) - - [12 Run.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/02-Main-Logic/12-Run.purs) - - [13 QuickCheckTest.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/02-Main-Logic/13-QuickCheckTest.purs) + - [01 Common.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/02-Main-Logic/01-Common.purs) + - [02 Generators.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/02-Main-Logic/02-Generators.purs) + - [03 ToCTestData.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/02-Main-Logic/03-ToCTestData.purs) + - [11 ReaderT.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/02-Main-Logic/11-ReaderT.purs) + - [12 Run.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/02-Main-Logic/12-Run.purs) + - [13 QuickCheckTest.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/02-Main-Logic/13-QuickCheckTest.purs) - 03 Parser Logic - - [01 GitHub Header Exploration.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md) - - [Basic Examples](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Basic-Examples) - - [Simple Phrase](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Simple-Phrase) - - [Phrase with punctuation throughout start~`!@#$%^&*()-_=+[{]};:'",<.>/?end](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Phrase-with-punctuation-throughout-start-_end) - - [Examples with WhiteSpace](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Examples-with-WhiteSpace) - - [Spaces Before](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Spaces-Before) - - [Spaces After](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Spaces-After) - - [Examples with Hyphens](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Examples-with-Hyphens) - - [Single - Hyphen](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Single---Hyphen) - - [Multiple ---- Hyphens](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Multiple------Hyphens) - - [- Starts with Hyphen](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#--Starts-with-Hyphen) - - [Ends with Hyphen -](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Ends-with-Hyphen--) - - [02 Generators.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/02-Generators.purs) - - [03 QuickCheckTest.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/03-QuickCheckTest.purs) + - [01 GitHub Header Exploration.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md) + - [Basic Examples](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Basic-Examples) + - [Simple Phrase](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Simple-Phrase) + - [Phrase with punctuation throughout start~`!@#$%^&*()-_=+[{]};:'",<.>/?end](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Phrase-with-punctuation-throughout-start-_end) + - [Examples with WhiteSpace](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Examples-with-WhiteSpace) + - [Spaces Before](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Spaces-Before) + - [Spaces After](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Spaces-After) + - [Examples with Hyphens](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Examples-with-Hyphens) + - [Single - Hyphen](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Single---Hyphen) + - [Multiple ---- Hyphens](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Multiple------Hyphens) + - [- Starts with Hyphen](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#--Starts-with-Hyphen) + - [Ends with Hyphen -](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/01-GitHub-Header-Exploration.md#Ends-with-Hyphen--) + - [02 Generators.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/02-Generators.purs) + - [03 QuickCheckTest.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/test/12-Table-of-Contents/03-Parser-Logic/03-QuickCheckTest.purs) - z dead - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/ReadMe.md) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/ReadMe.md) - 11 Random Number - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/ReadMe.md) - - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/ReadMe.md#Compilation-Instructions) - - [Standard](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/ReadMe.md#Standard) - - [Layered](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/ReadMe.md#Layered) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/ReadMe.md) + - [Compilation Instructions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/ReadMe.md#Compilation-Instructions) + - [Standard](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/ReadMe.md#Standard) + - [Layered](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/ReadMe.md#Layered) - src - 12 Free: Standard - - [02 Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/12-Free--Standard/02-Domain.purs) - - [03 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/12-Free--Standard/03-API.purs) + - [02 Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/12-Free--Standard/02-Domain.purs) + - [03 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/12-Free--Standard/03-API.purs) - 04 Infrastructure - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/12-Free--Standard/04-Infrastructure/ReadMe.md) - - [02 Terminal.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/12-Free--Standard/04-Infrastructure/02-Terminal.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/12-Free--Standard/04-Infrastructure/ReadMe.md) + - [02 Terminal.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/12-Free--Standard/04-Infrastructure/02-Terminal.purs) - 05 Main - - [01 Console.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/12-Free--Standard/05-Main/01-Console.purs) - - [02 Halogen.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/12-Free--Standard/05-Main/02-Halogen.purs) + - [01 Console.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/12-Free--Standard/05-Main/01-Console.purs) + - [02 Halogen.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/12-Free--Standard/05-Main/02-Halogen.purs) - 13 Run: Standard - - [02 Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/13-Run--Standard/02-Domain.purs) - - [03 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/13-Run--Standard/03-API.purs) + - [02 Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/13-Run--Standard/02-Domain.purs) + - [03 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/13-Run--Standard/03-API.purs) - 04 Infrastructure - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/13-Run--Standard/04-Infrastructure/ReadMe.md) - - [02 Terminal.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/13-Run--Standard/04-Infrastructure/02-Terminal.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/13-Run--Standard/04-Infrastructure/ReadMe.md) + - [02 Terminal.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/13-Run--Standard/04-Infrastructure/02-Terminal.purs) - 05 Main - - [01 Console.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/13-Run--Standard/05-Main/01-Console.purs) - - [02 Halogen.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/13-Run--Standard/05-Main/02-Halogen.purs) + - [01 Console.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/13-Run--Standard/05-Main/01-Console.purs) + - [02 Halogen.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/13-Run--Standard/05-Main/02-Halogen.purs) - 22 Free: Layered - - [02 High Level Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/02-High-Level-Domain.purs) - - [03 Low Level Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/03-Low-Level-Domain.purs) - - [04 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/04-API.purs) + - [02 High Level Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/02-High-Level-Domain.purs) + - [03 Low Level Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/03-Low-Level-Domain.purs) + - [04 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/04-API.purs) - 05 Infrastructure - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/05-Infrastructure/ReadMe.md) - - [02 Terminal.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/05-Infrastructure/02-Terminal.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/05-Infrastructure/ReadMe.md) + - [02 Terminal.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/05-Infrastructure/02-Terminal.purs) - 06 Main - - [01 Console.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/06-Main/01-Console.purs) - - [02 Halogen.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/06-Main/02-Halogen.purs) - - [07 Analysis.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/07-Analysis.md) - - [Hard-Coded Language](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/07-Analysis.md#Hard-Coded-Language) - - [Unnecessary Translations](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/07-Analysis.md#Unnecessary-Translations) - - [Tightly-Coupled Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/07-Analysis.md#Tightly-Coupled-Code) + - [01 Console.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/06-Main/01-Console.purs) + - [02 Halogen.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/06-Main/02-Halogen.purs) + - [07 Analysis.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/07-Analysis.md) + - [Hard-Coded Language](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/07-Analysis.md#Hard-Coded-Language) + - [Unnecessary Translations](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/07-Analysis.md#Unnecessary-Translations) + - [Tightly-Coupled Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/22-Free--Layered/07-Analysis.md#Tightly-Coupled-Code) - 23 Run: Layered - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/ReadMe.md) - - [Translating Between Languages](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/ReadMe.md#Translating-Between-Languages) - - [02 High Level Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/02-High-Level-Domain.purs) - - [03 Low Level Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/03-Low-Level-Domain.purs) - - [04 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/04-API.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/ReadMe.md) + - [Translating Between Languages](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/ReadMe.md#Translating-Between-Languages) + - [02 High Level Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/02-High-Level-Domain.purs) + - [03 Low Level Domain.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/03-Low-Level-Domain.purs) + - [04 API.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/04-API.purs) - 05 Infrastructure - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/05-Infrastructure/ReadMe.md) - - [02 Terminal.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/05-Infrastructure/02-Terminal.purs) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/05-Infrastructure/ReadMe.md) + - [02 Terminal.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/05-Infrastructure/02-Terminal.purs) - 06 Main - - [01 Console.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/06-Main/01-Console.purs) - - [02 Halogen.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/06-Main/02-Halogen.purs) - - [07 Change Implementation.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/07-Change-Implementation.purs) - - [08 Add API Term.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/08-Add-API-Term.purs) - - [09 Analysis.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/09-Analysis.md) + - [01 Console.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/06-Main/01-Console.purs) + - [02 Halogen.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/06-Main/02-Halogen.purs) + - [07 Change Implementation.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/07-Change-Implementation.purs) + - [08 Add API Term.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/08-Add-API-Term.purs) + - [09 Analysis.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/src/23-Run--Layered/09-Analysis.md) - test - - [13 Run: Standard.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/test/13-Run--Standard.purs) - - [23 Run: Layered.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/22-Projects/z-dead/11-Random-Number/test/23-Run--Layered.purs) + - [13 Run: Standard.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/test/13-Run--Standard.purs) + - [23 Run: Layered.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/22-Projects/z-dead/11-Random-Number/test/23-Run--Layered.purs) ## 31 Design Patterns -- [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/ReadMe.md) -- [01 Smart Constructors.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/01-Smart-Constructors.md) - - [The Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/01-Smart-Constructors.md#The-Problem) - - [The Solution](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/01-Smart-Constructors.md#The-Solution) +- [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/ReadMe.md) +- [01 Smart Constructors.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/01-Smart-Constructors.md) + - [The Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/01-Smart-Constructors.md#The-Problem) + - [The Solution](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/01-Smart-Constructors.md#The-Solution) - 02 Partial Functions - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/02-Partial-Functions/ReadMe.md) - - [Compilation Instruction](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/02-Partial-Functions/ReadMe.md#Compilation-Instruction) - - [Other Useful Links](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/02-Partial-Functions/ReadMe.md#Other-Useful-Links) - - [01 Via Partial.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/02-Partial-Functions/01-Via-Partial.purs) - - [02 Via Maybe.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/02-Partial-Functions/02-Via-Maybe.purs) - - [03 Via Either String.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/02-Partial-Functions/03-Via-Either-String.purs) - - [04 Via Either ErrorType.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/02-Partial-Functions/04-Via-Either-ErrorType.purs) - - [05 Via Refined Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/02-Partial-Functions/05-Via-Refined-Types.purs) - - [06 Using Variant Based Errors.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/02-Partial-Functions/06-Using-Variant-Based-Errors.md) - - [07 Via Default Values.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/02-Partial-Functions/07-Via-Default-Values.md) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/02-Partial-Functions/ReadMe.md) + - [Compilation Instruction](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/02-Partial-Functions/ReadMe.md#Compilation-Instruction) + - [Other Useful Links](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/02-Partial-Functions/ReadMe.md#Other-Useful-Links) + - [01 Via Partial.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/02-Partial-Functions/01-Via-Partial.purs) + - [02 Via Maybe.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/02-Partial-Functions/02-Via-Maybe.purs) + - [03 Via Either String.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/02-Partial-Functions/03-Via-Either-String.purs) + - [04 Via Either ErrorType.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/02-Partial-Functions/04-Via-Either-ErrorType.purs) + - [05 Via Refined Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/02-Partial-Functions/05-Via-Refined-Types.purs) + - [06 Using Variant Based Errors.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/02-Partial-Functions/06-Using-Variant-Based-Errors.md) + - [07 Via Default Values.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/02-Partial-Functions/07-Via-Default-Values.md) - 03 Phantom Types - - [01 What Are Phantom Types.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/03-Phantom-Types/01-What-Are-Phantom-Types.md) - - [Why Are PhantomTypes Useful?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/03-Phantom-Types/01-What-Are-Phantom-Types.md#Why-Are-PhantomTypes-Useful) - - [02 Restricting Argument Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/03-Phantom-Types/02-Restricting-Argument-Types.purs) -- [04 Records: Use Type Data or Newtype.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/04-Records--Use-Type-Data-or-Newtype.md) -- [05 Data Validation via Applicative.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/05-Data-Validation-via-Applicative.md) - - [Possible Choices](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/05-Data-Validation-via-Applicative.md#Possible-Choices) - - [The Pattern](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/05-Data-Validation-via-Applicative.md#The-Pattern) -- [06 Variance of Functors.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/06-Variance-of-Functors.md) - - [Functor Re-examined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/06-Variance-of-Functors.md#Functor-Re-examined) - - [Positive and Negative Position](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/06-Variance-of-Functors.md#Positive-and-Negative-Position) -- [07 Simulating Constraint Kinds.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/07-Simulating-Constraint-Kinds.md) -- [08 A Better TODO.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/08-A-Better-TODO.md) -- [09 Stack Safety.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/09-Stack-Safety.md) - - [An Example of Stack-Unsafe Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/09-Stack-Safety.md#An-Example-of-Stack-Unsafe-Code) - - [Tail-Call Optimization for Pure Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/09-Stack-Safety.md#Tail-Call-Optimization-for-Pure-Functions) - - [Tail-Call Optimization for Monadic Computations](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/09-Stack-Safety.md#Tail-Call-Optimization-for-Monadic-Computations) - - [Three Caveats of Using `tailRecM`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/09-Stack-Safety.md#Three-Caveats-of-Using-tailRecM) - - [Us `Trampoline`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/09-Stack-Safety.md#Us-Trampoline) - - [Use Mutable State (`Ref`s) and `whileE`/`untilE`/`forE`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/09-Stack-Safety.md#Use-Mutable-State-Refs-and-whileEuntilEforE) - - [A Note on `Aff`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/09-Stack-Safety.md#A-Note-on-Aff) -- [11 Zipper.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/11-Zipper.md) - - [The Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/11-Zipper.md#The-Problem) - - [The Solution](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/11-Zipper.md#The-Solution) -- [12 GADTs.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/12-GADTs.md) -- [13 Existential Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/13-Existential-Types.purs) -- [14 Cursors.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/14-Cursors.md) -- [15 Optics.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/15-Optics.md) - - [Lenses](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/15-Optics.md#Lenses) -- [1x Recursion Schemes.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/31-Design-Patterns/1x-Recursion-Schemes.md) + - [01 What Are Phantom Types.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/03-Phantom-Types/01-What-Are-Phantom-Types.md) + - [Why Are PhantomTypes Useful?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/03-Phantom-Types/01-What-Are-Phantom-Types.md#Why-Are-PhantomTypes-Useful) + - [02 Restricting Argument Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/03-Phantom-Types/02-Restricting-Argument-Types.purs) +- [04 Records: Use Type Data or Newtype.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/04-Records--Use-Type-Data-or-Newtype.md) +- [05 Data Validation via Applicative.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/05-Data-Validation-via-Applicative.md) + - [Possible Choices](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/05-Data-Validation-via-Applicative.md#Possible-Choices) + - [The Pattern](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/05-Data-Validation-via-Applicative.md#The-Pattern) +- [06 Variance of Functors.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/06-Variance-of-Functors.md) + - [Functor Re-examined](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/06-Variance-of-Functors.md#Functor-Re-examined) + - [Positive and Negative Position](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/06-Variance-of-Functors.md#Positive-and-Negative-Position) +- [07 Simulating Constraint Kinds.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/07-Simulating-Constraint-Kinds.md) +- [08 A Better TODO.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/08-A-Better-TODO.md) +- [09 Stack Safety.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/09-Stack-Safety.md) + - [An Example of Stack-Unsafe Code](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/09-Stack-Safety.md#An-Example-of-Stack-Unsafe-Code) + - [Tail-Call Optimization for Pure Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/09-Stack-Safety.md#Tail-Call-Optimization-for-Pure-Functions) + - [Tail-Call Optimization for Monadic Computations](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/09-Stack-Safety.md#Tail-Call-Optimization-for-Monadic-Computations) + - [Three Caveats of Using `tailRecM`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/09-Stack-Safety.md#Three-Caveats-of-Using-tailRecM) + - [Us `Trampoline`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/09-Stack-Safety.md#Us-Trampoline) + - [Use Mutable State (`Ref`s) and `whileE`/`untilE`/`forE`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/09-Stack-Safety.md#Use-Mutable-State-Refs-and-whileEuntilEforE) + - [A Note on `Aff`](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/09-Stack-Safety.md#A-Note-on-Aff) +- [11 Zipper.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/11-Zipper.md) + - [The Problem](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/11-Zipper.md#The-Problem) + - [The Solution](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/11-Zipper.md#The-Solution) +- [12 GADTs.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/12-GADTs.md) +- [13 Existential Types.purs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/13-Existential-Types.purs) +- [14 Cursors.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/14-Cursors.md) +- [15 Optics.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/15-Optics.md) + - [Lenses](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/15-Optics.md#Lenses) +- [1x Recursion Schemes.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/31-Design-Patterns/1x-Recursion-Schemes.md) ## 41 Ecosystem -- [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Readme.md) - - [Other Useful Links](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Readme.md#Other-Useful-Links) - - [Things Related to PureScript](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Readme.md#Things-Related-to-PureScript) - - [Advanced Links](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Readme.md#Advanced-Links) +- [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Readme.md) + - [Other Useful Links](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Readme.md#Other-Useful-Links) + - [Things Related to PureScript](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Readme.md#Things-Related-to-PureScript) + - [Advanced Links](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Readme.md#Advanced-Links) - Data Types - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/ReadMe.md) - - [Philosophical Foundations for FP Data Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/ReadMe.md#Philosophical-Foundations-for-FP-Data-Types) - - [Principles](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/ReadMe.md#Principles) - - [Lazy vs Strict](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/ReadMe.md#Lazy-vs-Strict) - - [Big O Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/ReadMe.md#Big-O-Notation) - - [Deeper Reading](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/ReadMe.md#Deeper-Reading) - - [See Also](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/ReadMe.md#See-Also) - - [01 Primitives.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md) - - [Miscellaneous but Important](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Miscellaneous-but-Important) - - [Identity](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Identity) - - [Globals](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Globals) - - [Number-related](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Number-related) - - [Int](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Int) - - [Math](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Math) - - [Rationals](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Rationals) - - [Precise](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Precise) - - [Numerics](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Numerics) - - [BigIntegers](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#BigIntegers) - - [Decimals](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Decimals) - - [Strings](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Strings) - - [Binary (Outdated)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Binary-Outdated) - - [Matrix](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/01-Primitives.md#Matrix) - - [02 Maybe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/02-Maybe.md) - - [03 Sum and Product Types.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md) - - [What does 'Open' mean?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#What-does-Open-mean) - - [The Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#The-Types) - - [Tuple](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#Tuple) - - [Record](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#Record) - - [Either](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#Either) - - [Variant](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#Variant) - - [These](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#These) - - [Concluding Thoughts](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#Concluding-Thoughts) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/ReadMe.md) + - [Philosophical Foundations for FP Data Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/ReadMe.md#Philosophical-Foundations-for-FP-Data-Types) + - [Principles](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/ReadMe.md#Principles) + - [Lazy vs Strict](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/ReadMe.md#Lazy-vs-Strict) + - [Big O Notation](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/ReadMe.md#Big-O-Notation) + - [Deeper Reading](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/ReadMe.md#Deeper-Reading) + - [See Also](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/ReadMe.md#See-Also) + - [01 Primitives.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md) + - [Miscellaneous but Important](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Miscellaneous-but-Important) + - [Identity](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Identity) + - [Globals](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Globals) + - [Number-related](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Number-related) + - [Int](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Int) + - [Math](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Math) + - [Rationals](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Rationals) + - [Precise](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Precise) + - [Numerics](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Numerics) + - [BigIntegers](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#BigIntegers) + - [Decimals](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Decimals) + - [Strings](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Strings) + - [Binary (Outdated)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Binary-Outdated) + - [Matrix](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/01-Primitives.md#Matrix) + - [02 Maybe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/02-Maybe.md) + - [03 Sum and Product Types.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md) + - [What does 'Open' mean?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#What-does-Open-mean) + - [The Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#The-Types) + - [Tuple](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#Tuple) + - [Record](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#Record) + - [Either](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#Either) + - [Variant](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#Variant) + - [These](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#These) + - [Concluding Thoughts](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/03-Sum-and-Product-Types.md#Concluding-Thoughts) - 04 Collections - - [01 List Like.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md) - - [Array (Mutable)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md#Array-Mutable) - - [Array (Immutable)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md#Array-Immutable) - - [Vec](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md#Vec) - - [List (Strict)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md#List-Strict) - - [List (Lazy)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md#List-Lazy) - - [List (Size Known at Compile-Time)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md#List-Size-Known-at-Compile-Time) - - [02 Map Like.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/02-Map-Like.md) - - [Map (Ord-based)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/02-Map-Like.md#Map-Ord-based) - - [Map (Hash-based)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/02-Map-Like.md#Map-Hash-based) - - [Vault (Key-Type-based; outdated)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/02-Map-Like.md#Vault-Key-Type-based-outdated) - - [03 Sets.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/03-Sets.md) - - [Set (Ord-based)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/03-Sets.md#Set-Ord-based) - - [Set (Hash-based)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/03-Sets.md#Set-Hash-based) - - [04 All Others.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md) - - [Finger Tree](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Finger-Tree) - - [Bitmapped Vector Trie](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Bitmapped-Vector-Trie) - - [Seq](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Seq) - - [Graphs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Graphs) - - [Queues](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Queues) - - [Outdated](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Outdated) - - [Heap (outdated)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Heap-outdated) - - [Priority Queue (outdated)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Priority-Queue-outdated) - - [Rose or Multi-Way Tree (outdated)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Rose-or-Multi-Way-Tree-outdated) - - [Trie (outdated)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Trie-outdated) - - [05 NonEmpty.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/04-Collections/05-NonEmpty.md) - - [05 Miscellaneous.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/05-Miscellaneous.md) - - [Codecs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/05-Miscellaneous.md#Codecs) - - [Unit Types (Runtime only)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/05-Miscellaneous.md#Unit-Types-Runtime-only) - - [Options](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/05-Miscellaneous.md#Options) - - [Semver Versioning](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/05-Miscellaneous.md#Semver-Versioning) - - [Date/DateTime/Time/Integral](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/05-Miscellaneous.md#DateDateTimeTimeIntegral) - - [Date Time](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/05-Miscellaneous.md#Date-Time) - - [Media Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/05-Miscellaneous.md#Media-Types) - - [Syntax](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/05-Miscellaneous.md#Syntax) - - [HTTP method type](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/05-Miscellaneous.md#HTTP-method-type) - - [Text Encoder/Decoder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Data-Types/05-Miscellaneous.md#Text-EncoderDecoder) + - [01 List Like.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md) + - [Array (Mutable)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md#Array-Mutable) + - [Array (Immutable)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md#Array-Immutable) + - [Vec](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md#Vec) + - [List (Strict)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md#List-Strict) + - [List (Lazy)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md#List-Lazy) + - [List (Size Known at Compile-Time)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/01-List-Like.md#List-Size-Known-at-Compile-Time) + - [02 Map Like.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/02-Map-Like.md) + - [Map (Ord-based)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/02-Map-Like.md#Map-Ord-based) + - [Map (Hash-based)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/02-Map-Like.md#Map-Hash-based) + - [Vault (Key-Type-based; outdated)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/02-Map-Like.md#Vault-Key-Type-based-outdated) + - [03 Sets.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/03-Sets.md) + - [Set (Ord-based)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/03-Sets.md#Set-Ord-based) + - [Set (Hash-based)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/03-Sets.md#Set-Hash-based) + - [04 All Others.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md) + - [Finger Tree](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Finger-Tree) + - [Bitmapped Vector Trie](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Bitmapped-Vector-Trie) + - [Seq](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Seq) + - [Graphs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Graphs) + - [Queues](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Queues) + - [Outdated](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Outdated) + - [Heap (outdated)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Heap-outdated) + - [Priority Queue (outdated)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Priority-Queue-outdated) + - [Rose or Multi-Way Tree (outdated)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Rose-or-Multi-Way-Tree-outdated) + - [Trie (outdated)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/04-All-Others.md#Trie-outdated) + - [05 NonEmpty.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/04-Collections/05-NonEmpty.md) + - [05 Miscellaneous.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/05-Miscellaneous.md) + - [Codecs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/05-Miscellaneous.md#Codecs) + - [Unit Types (Runtime only)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/05-Miscellaneous.md#Unit-Types-Runtime-only) + - [Options](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/05-Miscellaneous.md#Options) + - [Semver Versioning](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/05-Miscellaneous.md#Semver-Versioning) + - [Date/DateTime/Time/Integral](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/05-Miscellaneous.md#DateDateTimeTimeIntegral) + - [Date Time](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/05-Miscellaneous.md#Date-Time) + - [Media Types](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/05-Miscellaneous.md#Media-Types) + - [Syntax](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/05-Miscellaneous.md#Syntax) + - [HTTP method type](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/05-Miscellaneous.md#HTTP-method-type) + - [Text Encoder/Decoder](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Data-Types/05-Miscellaneous.md#Text-EncoderDecoder) - Library Stacks - - [0x Front End Library Comparisons.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Library-Stacks/0x-Front-End-Library-Comparisons.md) - - [0x Full Stacks.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Library-Stacks/0x-Full-Stacks.md) - - [0x Library Guides.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Library-Stacks/0x-Library-Guides.md) + - [0x Front End Library Comparisons.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Library-Stacks/0x-Front-End-Library-Comparisons.md) + - [0x Full Stacks.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Library-Stacks/0x-Full-Stacks.md) + - [0x Library Guides.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Library-Stacks/0x-Library-Guides.md) - Performance Related - - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Performance-Related/ReadMe.md) + - [ReadMe.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Performance-Related/ReadMe.md) - Type Classes - - [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/Readme.md) - - [Why Are PureScript's Type Classes So Granular?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/Readme.md#Why-Are-PureScripts-Type-Classes-So-Granular) - - [Automatically Deriving Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/Readme.md#Automatically-Deriving-Instances) - - [Relationships](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/Readme.md#Relationships) - - [Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/Readme.md#Functions) - - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/Readme.md#Laws) - - [Category Theory](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/Readme.md#Category-Theory) - - [External Explanations.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/External-Explanations.md) - - [Comonad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/External-Explanations.md#Comonad) - - [IndexedMonad (i.e. `IxMonad`)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/External-Explanations.md#IndexedMonad-ie-IxMonad) - - [Functors.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/Functors.md) - - [Group Like.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/Group-Like.md) - - [Utility Functions.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Classes/Utility-Functions.md) + - [Readme.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/Readme.md) + - [Why Are PureScript's Type Classes So Granular?](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/Readme.md#Why-Are-PureScripts-Type-Classes-So-Granular) + - [Automatically Deriving Instances](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/Readme.md#Automatically-Deriving-Instances) + - [Relationships](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/Readme.md#Relationships) + - [Functions](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/Readme.md#Functions) + - [Laws](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/Readme.md#Laws) + - [Category Theory](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/Readme.md#Category-Theory) + - [External Explanations.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/External-Explanations.md) + - [Comonad](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/External-Explanations.md#Comonad) + - [IndexedMonad (i.e. `IxMonad`)](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/External-Explanations.md#IndexedMonad-ie-IxMonad) + - [Functors.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/Functors.md) + - [Group Like.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/Group-Like.md) + - [Utility Functions.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Classes/Utility-Functions.md) - Type Level Programming - - [Libraries and Example Projects.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Level-Programming/Libraries-and-Example-Projects.md) - - [Type-Level Types, Values, and Proxies](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Level-Programming/Libraries-and-Example-Projects.md#Type-Level-Types-Values-and-Proxies) - - [Type-Level Modules](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Level-Programming/Libraries-and-Example-Projects.md#Type-Level-Modules) - - [Real-World examples](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Level-Programming/Libraries-and-Example-Projects.md#Real-World-examples) - - [Ideas](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.0/41-Ecosystem/Type-Level-Programming/Libraries-and-Example-Projects.md#Ideas) + - [Libraries and Example Projects.md](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Level-Programming/Libraries-and-Example-Projects.md) + - [Type-Level Types, Values, and Proxies](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Level-Programming/Libraries-and-Example-Projects.md#Type-Level-Types-Values-and-Proxies) + - [Type-Level Modules](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Level-Programming/Libraries-and-Example-Projects.md#Type-Level-Modules) + - [Real-World examples](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Level-Programming/Libraries-and-Example-Projects.md#Real-World-examples) + - [Ideas](https://github.com/JordanMartinez/purescript-jordans-reference/blob/ps-0.13.x-v0.18.1/41-Ecosystem/Type-Level-Programming/Libraries-and-Example-Projects.md#Ideas)