I have this lambda lambda expression : λx.(λy.(λz.x(yz)))
I’m trying to write a Scheme expression out of it.
I did this:
(define (f x)(lambda(y z) (f (y z))))
Is that right? If not, what am I doing wrong?
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.
I’m not quite sure about that lambda notation but I think you need this:
and you can use it like this: