Hacker News new | ask | show | jobs
by fire_lake 454 days ago
And even then, execution depends on your language and compiler.

Write a recursive BFS in Haskell and it won’t blow up the stack.

1 comments

Any language with decent TCO won't do that. Python is the only big language that I can think of that doesn't do it.
Guaranteed TCO is pretty rare unfortunately.

Java, Go, JavaScript all lack it.

Actually, you are right.