let passFive f = (f 5)
let passFive f = f 5
What’s difference between them?
I found they are both like below:
val passFive : (int -> 'a) -> 'a
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.
They are both the same and brackets ( parentheses ) here are used like anywhere else where you want to group together the operands and increase their precedence.
will give error.
is how it is supposed to be written.