• kamstrup@programming.dev
    link
    fedilink
    arrow-up
    1
    ·
    7 hours ago

    Most devs I know like recursion. Trouble is that many popular languages don’t support tail recursion, but throw a stackoverflow error after a few thousand levels. So you have to keep track of max recursion depth manually, and it starts to look like a complicated solution