Hello, could someone please give me an example of the "partial application" of the following curried function: add' :: Int -> Int -> Int add' a b = a + b Normally, add' 1 should work, but it doesn't. Many thanks. phiroc