+A recursive function is a [function](/wiki/function) that elegantly solves problems by calling itself. It breaks complex tasks into simpler, self-similar instances, halting when a [base case](/wiki/base_case) is met.
+## See also
+- [Algorithm](/wiki/algorithm)
+- [Stack](/wiki/stack)
+- [Iteration](/wiki/iteration)
... 1 more lines