Hacker News new | ask | show | jobs
by kazinator 3625 days ago
That coding guideline simply rejects all recursion, even cases that are correct by inspection, or by easy proof.
1 comments

Interesting. I assume they allow the special cases of tail recursion introduced by 'while', 'for' and similar constructs?
goto is banned; loops must be statically bounded.
Thanks for the information!