Y
Hacker News
new
|
ask
|
show
|
jobs
by
bad_login
2362 days ago
Tail Call Optimization is an optimization done by the compile/vm that replace (in assembly terms) a CALL by a JMP. Therefore removing a call stack.
1 comments
sb8244
2362 days ago
Correct. BEAM does real TCO as far as I'm aware. LYSE has a blurb about it and seems to agree (
https://learnyousomeerlang.com/recursion
).
link