module Example2 where twice f x = f (f x) times2 :: Int -> Int times2 x = 2 * x