in reply to Re: Tail recursion elimination
in thread Tail recursion elimination

Of course maintaining your own stack is often a valid alternative, and might even have benefits in that you can do direct stack manipulations, but it's starting to sound like a register machine implementation at that point and many people won't want to go that far.
Bill H
perl -e 'print sub { "Hello @{[shift]}!\n" }->("World")'