(lambda (x) (block abc (...) (return-from abc) (...) )) <==> (lambda abc (x) (...) (return-from abc) (...)) If I have lots of loops and blocks in my lambda, it's very difficult to return from it. So I think Arc should support named lambdas, allowing user not to make a block containing whole code of this lambda. |