Function Operators
square :: Int -> Int
square x = x * x
gt100 :: Int -> Bool
gt100 x = x > 100
squareGt100 :: Int -> Bool
squareGt100 x = gt100 (square x)(.) f g = \x -> f (g x)f $ x = f xsquareGt100 :: Int -> Bool
squareGt100 x = gt100 . square $ xLast updated