Hacker News new | ask | show | jobs
by coderatlarge 309 days ago
can it execute the y-combinator?
2 comments

I’m pretty sure does not handle TCO… so probably not, unless with a huge stack.
It doesn't appear to, but you could always add this to the included common.lisp file:

  (define Y (lambda (f) (lambda args ((f (Y f)) . args))))