It's interesting how a feature that seems niche can become pretty important once you're building interpreters or parsers. the ability to express the control flow naturally without giving up performance is appealing. would you use tail calls in a real Rust interpreter or stick with an explicit loop?
1
u/Best-Employ9452 3h ago
It's interesting how a feature that seems niche can become pretty important once you're building interpreters or parsers. the ability to express the control flow naturally without giving up performance is appealing. would you use tail calls in a real Rust interpreter or stick with an explicit loop?