summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2020-04-26 10:15:20 -0700
committerBen Sima <ben@bsima.me>2020-04-26 10:15:20 -0700
commitb9e4cfe80c513d9c3b730dc2b46b44baed06acc4 (patch)
treeb3a178b6fd0a1ee91537fe38dbaa394131a2dc0a
parentc75a32583244d08e84c770a6dac1155fe46f88c3 (diff)
don't lol
-rw-r--r--Alpha.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Alpha.hs b/Alpha.hs
index afcd59d..5d08bc0 100644
--- a/Alpha.hs
+++ b/Alpha.hs
@@ -29,6 +29,9 @@ module Alpha
(</),
(<//),
+ -- * Bool
+ don't,
+
-- * Text
chomp,
lchomp,
@@ -90,3 +93,8 @@ lchomp = LazyText.filter (/= '\n')
-- | Join a list of things with a separator.
joinWith :: [a] -> [[a]] -> [a]
joinWith = intercalate
+
+-- | can you just not
+don't :: Bool -> Bool
+don't = do not
+{-# ANN don't "HLint: ignore Redundant do" #-}