If somebody want to play with currying in Haskell interpreter (ghci):
plus :: Int-> (Int-> Int); plus x y = x + yplus 2 3plus_two = plus 2plus_two 3plus_two 7
If somebody want to play with currying in Haskell interpreter (ghci):
plus :: Int-> (Int-> Int); plus x y = x + y
plus 2 3
plus_two = plus 2
plus_two 3
plus_two 7