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