From ff174d9536db26945189593bf8194f18fbd5ce3f Mon Sep 17 00:00:00 2001 From: evuez Date: Mon, 1 Apr 2024 15:16:52 +0200 Subject: Initial commit --- src/Intro.hs | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/Intro.hs (limited to 'src/Intro.hs') 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 -- cgit v1.2.3