import Prelude hiding (flip) -- Takes the first five elements from a list take5 :: [a] -> [a] take5 = take 5 -- Returns the first n letters takeNletters :: Int -> String takeNletters = (flip take) "abcdefghijklmonopqrstxyz" -- Function which flips the order of arguments flip :: (a -> b -> c) -> (b -> a -> c) flip f = \y x -> f x y