| import Data.List.NonEmpty | |
| newtype WordsThatAreNeverFollowedBy = | |
| WordsThatAreNeverFollowedBy | |
| [(String, [NonEmpty String])] | |
| deriving (Eq, Ord, Show) | |
| never = | |
| WordsThatAreNeverFollowedBy | |
| [ | |
| ( | |
| "your" | |
| , [ | |
| pure "going" | |
| , pure "having" | |
| ] | |
| ) | |
| , ( | |
| "would" | |
| , [ | |
| pure "of" | |
| ] | |
| ) | |
| , ( | |
| "should" | |
| , [ | |
| pure "of" | |
| ] | |
| ) | |
| , ( | |
| "could" | |
| , [ | |
| pure "of" | |
| ] | |
| ) | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
your going away party is cancelled until further notice