Guest User

Untitled

a guest
Jul 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. module Currying where
  2.  
  3. addF :: Integer -> Integer -> Integer
  4. addF a b = a + b
  5.  
  6. res = addF 1 2
  7. main :: IO ()
  8. main = print res
Add Comment
Please, Sign In to add comment