Closed allison-j-l closed 2 years ago
let f x = x + y should be let f x y = x + y otherwise the code does not compile due to signature mismatch
let f x = x + y
let f x y = x + y
let f x = x + y
should belet f x y = x + y
otherwise the code does not compile due to signature mismatch