Are there any examples for a recursive function that calls an other function which calls the first one too ?
Example :
function1() { //do something
In a language with proper tail calls, Mutual Tail Recursion is a very natural way of implementing automata.