Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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"
]
)
]
@Kiwi

This comment has been minimized.

Copy link

@Kiwi Kiwi commented Mar 21, 2019

your going away party is cancelled until further notice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment