Source: wikibot/tail-call

= Tail call
{wiki=Tail_call}

A **tail call** is a specific kind of function call that occurs as the final action of a procedure or function before it returns a result. In programming, especially in languages that support functional programming paradigms, tail calls have significant implications for performance and memory usage. When a function makes a tail call, it can often do so without needing to increase the call stack.