Hello,

I understand that let can be made with a lambda, for example

(let((r 5))
    (display r)
)

((lambda(r)
      (display r)
)5)

Can something like this be done with letrec ?

Thanks,

Eric J.