EvidenceSynthesisandJohnsHopkinsTable.graded1.docx
March 31, 2022
Critical thinking, writing and presentation skills
March 31, 2022
Show all

Racket Code

 

(define curry
(lambda (lambda-exp)
‘fill-in-the-blank’))

Using Racket Code Write a structurally recursive function named (curry exp) that takes one argument, a Racket lambda expression with n 1 formal parameter. curry returns a curried function. For example:

    > (curry '(lambda (x) anything))
    '(lambda (x) anything)

Leave a Reply

Your email address will not be published. Required fields are marked *