fork download
  1. add :: (Int, Int) -> Int
  2. add (a, b) = a + b
  3.  
  4. main = print $ add (2, 2)
Success #stdin #stdout 0s 4516KB
stdin
Standard input is empty
stdout
4