As shown in the title:
let (+) x y z = x + y + z in 5+6 7
Why is this expression wrong?
The error says Error: This expression is not a function; it cannot be applied. But what I see is a function, it just redefine the operator of +.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Because you’re trying to call
6with the argument7and6is not a function. Try