in reply to Re^3: Syntactic sugar for tail call optimizations
in thread Syntactic sugar for tail call optimizations
Tail calls reuse the current call frame and thus avoid stack overflows in deep recursions.
There is no stack to overflow since the frames are on the heap.
|
|---|