Here\'s an obviously recursive function:
function() { function(); }
We would simply call this \"recursive\"—but what about this (barely
One interpertaion of double recursion could be divide and conquer (e.g) quicksort
quicksort = quicksort smaller ++ pivot ++ quicksort larger