aboutsummaryrefslogtreecommitdiff
path: root/src/Intro.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Intro.hs')
-rw-r--r--src/Intro.hs64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/Intro.hs b/src/Intro.hs
new file mode 100644
index 0000000..b6c76b7
--- /dev/null
+++ b/src/Intro.hs
@@ -0,0 +1,64 @@
+module Intro
+ ( ($)
+ , (&&)
+ , (*)
+ , (+)
+ , (++)
+ , (-)
+ , (.)
+ , (/=)
+ , (<$>)
+ , (<*>)
+ , (<)
+ , (=<<)
+ , (==)
+ , (>>=)
+ , (||)
+ , Applicative
+ , Bool (False, True)
+ , Char
+ , Eq
+ , IO
+ , Int
+ , Maybe (Just, Nothing)
+ , Either (Left, Right)
+ , Functor
+ , Show
+ , String
+ , all
+ , break
+ , concat
+ , const
+ , curry
+ , dropWhile
+ , either
+ , elem
+ , filter
+ , flip
+ , foldl
+ , foldr
+ , fst
+ , head
+ , init
+ , last
+ , length
+ , fmap
+ , id
+ , mconcat
+ , mod
+ , not
+ , otherwise
+ , pure
+ , putStrLn
+ , reverse
+ , show
+ , snd
+ , uncurry
+ , words
+ , zip
+ , zipWith
+ , null
+ )
+where
+
+import Prelude